lidavidm commented on code in PR #4250:
URL: https://github.com/apache/arrow-adbc/pull/4250#discussion_r3141735342
##########
.github/workflows/java.yml:
##########
@@ -228,10 +228,34 @@ jobs:
done
popd
cp -r artifacts/*/jni/adbc_driver_jni
java/driver/jni/src/main/resources
+ env BUILD_JNI=ON ./ci/scripts/java_build.sh $(pwd)
+
+ - name: Start Dependencies
+ if: matrix.os == 'Linux' && matrix.arch == 'amd64'
+ run: |
+ docker compose up --detach --wait mssql-test postgres-test
+ cat .env | grep -v -e '^#' | grep -e '^ADBC_' | awk NF | sed
's/"//g' | tee -a $GITHUB_ENV
+
+ - name: Download thirdparty driver
+ if: matrix.os == 'Linux' && matrix.arch == 'amd64'
+ run: |
+ wget
https://dbc-cdn.columnar.tech/mssql/v1.3.1/mssql_linux_amd64_v1.3.1.tar.gz
+ echo
"e6723cf417403f313fb75c1ac03aea9b9ff857d4a947608c8ae44eacc1aa22b3
mssql_linux_amd64_v1.3.1.tar.gz" > mssql_linux_amd64_v1.3.1.tar.gz.sha256
+ sha256sum -c mssql_linux_amd64_v1.3.1.tar.gz.sha256
Review Comment:
No; we can't run Docker containers on other platforms. So there's no reason
to test elsewhere.
--
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]