sgrebnov commented on code in PR #2961: URL: https://github.com/apache/arrow-adbc/pull/2961#discussion_r2175671468
########## compose.yaml: ########## @@ -208,7 +208,7 @@ services: DREMIO_JAVA_EXTRA_OPTS: "-Ddebug.addDefaultUser=true -Ddremio.eula.disabled=true" healthcheck: test: [ "CMD", "curl", "--fail", "http://localhost:9047" ] - interval: 10s + interval: 5s Review Comment: Bad merge, fixed - thank you ########## .github/workflows/integration.yml: ########## @@ -323,3 +323,47 @@ jobs: run: | ./ci/scripts/python_build.sh "$(pwd)" "$(pwd)/build" env BUILD_DRIVER_MANAGER=0 ./ci/scripts/python_test.sh "$(pwd)" "$(pwd)/build" + + flightsql_interop: + name: "FlightSQL C# Interop" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + persist-credentials: false + - name: Get required Go version + run: | + (. .env && echo "GO_VERSION=${GO}") >> $GITHUB_ENV + + - name: Get Date + id: get-date + run: | + echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT + + - uses: actions/setup-go@v5 + with: + go-version: "${{ env.GO_VERSION }}" + check-latest: true + cache: true + cache-dependency-path: go/adbc/go.sum + + - name: Build ADBC Driver + working-directory: go/adbc/pkg + run: | + make libadbc_driver_flightsql.so + ls -l + Review Comment: Updated, thank you -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org