Skip to content

Commit f9be7bb

Browse files
authored
now targets sql server 2022 (#87)
1 parent c65ae0f commit f9be7bb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ executors:
1414
auth:
1515
username: $DOCKER_LOGIN
1616
password: $DOCKER_ACCESSTOKEN
17-
- image: mcr.microsoft.com/mssql/server:2019-CU13-ubuntu-20.04 # For integration testing
17+
- image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04 # For integration testing
1818
auth:
1919
username: $DOCKER_LOGIN
2020
password: $DOCKER_ACCESSTOKEN

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,5 +181,5 @@ dotnet test --filter Category=Integration
181181
To run the integration tests, a running MS-SQL database is required. You can use the docker command below to set up a local MS-SQL database to run the integration tests against.
182182

183183
```sh
184-
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=myAwesomePassword1" -e "MSSQL_AGENT_ENABLED=True" -p 1433:1433 -d mcr.microsoft.com/mssql/server:2019-CU13-ubuntu-20.04
184+
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=myAwesomePassword1" -e "MSSQL_AGENT_ENABLED=True" -p 1433:1433 -d mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04
185185
```

0 commit comments

Comments
 (0)