diff --git a/.github/workflows/go-test-linux-mssql.yaml b/.github/workflows/go-test-linux-mssql.yaml index b5f72fc..5e40bb6 100644 --- a/.github/workflows/go-test-linux-mssql.yaml +++ b/.github/workflows/go-test-linux-mssql.yaml @@ -4,7 +4,7 @@ on: [push] env: SENZING_LOG_LEVEL: TRACE - SENZING_TOOLS_DATABASE_URL: "mssql://sa:Passw0rd@mssql:1433/G2/?TrustServerCertificate=true&driver=ODBC+Driver+18+for+SQL+Server" + SENZING_TOOLS_DATABASE_URL: "mssql://sa:Passw0rd@mssql:1433/G2/?TrustServerCertificate=true&driver=G2" UBUNTU_VERSION: "24.04" permissions: @@ -77,6 +77,10 @@ jobs: run: | /opt/mssql-tools18/bin/sqlcmd -C -P "Passw0rd" -Q "CREATE DATABASE G2" -S "localhost,1433" -U "sa" + - name: cat odbc.ini + run: | + cat /opt/microsoft/msodbcsql18/etc/odbc.ini + - name: cat odbcinst.ini run: | cat /opt/microsoft/msodbcsql18/etc/odbcinst.ini diff --git a/.github/workflows/go-test-linux-oracle.yaml b/.github/workflows/go-test-linux-oracle.yaml index fedef03..6242d4c 100644 --- a/.github/workflows/go-test-linux-oracle.yaml +++ b/.github/workflows/go-test-linux-oracle.yaml @@ -48,7 +48,7 @@ jobs: run: sudo cp --verbose --recursive rootfs/* / - name: Copy testdata files - run: sudo cp --verbose --recursive testdata/oracle/rootfs* / + run: sudo cp --verbose --recursive testdata/oracle/rootfs/* / - name: Install Senzing SDK uses: senzing-factory/github-action-install-senzing-sdk@v3