From cc870aa5d9de399fd10f546de975cd460fc54a6c Mon Sep 17 00:00:00 2001 From: edward Date: Tue, 31 Oct 2023 20:18:06 -0400 Subject: [PATCH] install odbc github action --- .github/workflows/test_destination_synapse.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_destination_synapse.yml b/.github/workflows/test_destination_synapse.yml index e86e29ebf6..5ebb7ff398 100644 --- a/.github/workflows/test_destination_synapse.yml +++ b/.github/workflows/test_destination_synapse.yml @@ -5,9 +5,9 @@ on: branches: - master - devel - + workflow_dispatch: - + env: DESTINATION__SYNAPSE__CREDENTIALS: ${{ secrets.SYNAPSE_CREDENTIALS }} DESTINATION__SYNAPSE__CREDENTIALS__PASSWORD: ${{ secrets.SYNAPSE_PASSWORD }} @@ -29,6 +29,9 @@ jobs: if [[ "${{ github.head_ref }}" != "synapse" ]]; then exit 1 fi + - name: Install ODBC driver for SQL Server + run:| + sudo ACCEPT_EULA=Y apt-get install --yes msodbcsql18 run_loader: name: Tests Synapse loader @@ -42,7 +45,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - + - name: Check out uses: actions/checkout@master