lidavidm commented on code in PR #2961:
URL: https://github.com/apache/arrow-adbc/pull/2961#discussion_r2162670633
##########
.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
+
+ - name: Start Test Servers
+ run: |
+ docker compose up --wait --detach spiceai-test
+
+ - name: Test Driver against Spice.ai OSS
Review Comment:
Can this just be integrated into the existing Flight SQL test pipeline
above? (Do the tests themselves take a significant amount of time?)
##########
ci/configs/flightsql-spiceai.json:
##########
Review Comment:
What is this config file _for_? (If it's C# specific, can it be kept in
csharp/?)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]