Skip to content

Commit

Permalink
add dash C
Browse files Browse the repository at this point in the history
  • Loading branch information
keitherskine committed Sep 8, 2024
1 parent 7342a53 commit 703f82b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ubuntu_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ jobs:
docker exec -i "${{ job.services.mssql2017.id }}" /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2017' -Q "SELECT @@VERSION" || sleep 5
docker exec -i "${{ job.services.mssql2017.id }}" /opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2017' -Q "CREATE DATABASE test"
echo "*** SQL Server 2019"
docker exec -i "${{ job.services.mssql2019.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2019' -Q "SELECT @@VERSION" || sleep 5
docker exec -i "${{ job.services.mssql2019.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2019' -Q "CREATE DATABASE test"
docker exec -i "${{ job.services.mssql2019.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2019' -C -Q "SELECT @@VERSION" || sleep 5
docker exec -i "${{ job.services.mssql2019.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2019' -C -Q "CREATE DATABASE test"
echo "*** SQL Server 2022"
docker exec -i "${{ job.services.mssql2022.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2022' -Q "SELECT @@VERSION" || sleep 5
docker exec -i "${{ job.services.mssql2022.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2022' -Q "CREATE DATABASE test"
docker exec -i "${{ job.services.mssql2022.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2022' -C -Q "SELECT @@VERSION" || sleep 5
docker exec -i "${{ job.services.mssql2022.id }}" /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'StrongPassword2022' -C -Q "CREATE DATABASE test"
- name: Create test database in PostgreSQL
run: |
Expand Down
18 changes: 9 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ environment:
# all the Python versions to be tested, both 32-bit and 64-bit
# ref: https://www.appveyor.com/docs/windows-images-software/#python
- PYTHON_HOME: "C:\\Python312-x64"
- PYTHON_HOME: "C:\\Python312"
- PYTHON_HOME: "C:\\Python311-x64"
- PYTHON_HOME: "C:\\Python311"
- PYTHON_HOME: "C:\\Python310-x64"
- PYTHON_HOME: "C:\\Python310"
- PYTHON_HOME: "C:\\Python39-x64"
- PYTHON_HOME: "C:\\Python39"
- PYTHON_HOME: "C:\\Python38-x64"
- PYTHON_HOME: "C:\\Python38"
# - PYTHON_HOME: "C:\\Python312"
# - PYTHON_HOME: "C:\\Python311-x64"
# - PYTHON_HOME: "C:\\Python311"
# - PYTHON_HOME: "C:\\Python310-x64"
# - PYTHON_HOME: "C:\\Python310"
# - PYTHON_HOME: "C:\\Python39-x64"
# - PYTHON_HOME: "C:\\Python39"
# - PYTHON_HOME: "C:\\Python38-x64"
# - PYTHON_HOME: "C:\\Python38"

# ref: https://www.appveyor.com/docs/services-databases/
init:
Expand Down

0 comments on commit 703f82b

Please sign in to comment.