Skip to content

Commit

Permalink
Tweaking the SQL SErver CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Nov 18, 2024
1 parent 3427253 commit 48dd0c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sqlserver:
image: ${{ matrix.mssql-image }}
ports:
- 1434:1433
- 1433:1433
env:
ACCEPT_EULA: Y
SA_PASSWORD: ${{ env.db_pwd }}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
sqlserver:
image: "mcr.microsoft.com/azure-sql-edge"
ports:
- "1434:1433"
- "1433:1433"
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=P@55w0rd"
Expand Down
2 changes: 1 addition & 1 deletion src/Weasel.SqlServer.Tests/ConnectionSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class ConnectionSource
{
public static readonly string ConnectionString =
Environment.GetEnvironmentVariable("weasel_sqlserver_testing_database")
?? "Server=localhost,1434;User Id=sa;Password=P@55w0rd;Timeout=5;MultipleActiveResultSets=True;Initial Catalog=master;Encrypt=False";
?? "Server=localhost,1433;User Id=sa;Password=P@55w0rd;Timeout=5;MultipleActiveResultSets=True;Initial Catalog=master;Encrypt=False";

static ConnectionSource()
{
Expand Down

0 comments on commit 48dd0c6

Please sign in to comment.