andygrove commented on code in PR #1481:
URL: https://github.com/apache/datafusion-comet/pull/1481#discussion_r1986330188
##########
.github/workflows/pr_build.yml:
##########
@@ -40,12 +40,31 @@ env:
RUST_VERSION: stable
jobs:
+ linux-test-rust:
+ strategy:
+ matrix:
+ os: [ubuntu-latest]
+ is_push_event:
+ - ${{ github.event_name == 'push' }}
+ fail-fast: false
+ name: ${{ matrix.os }}/rust
+ runs-on: ${{ matrix.os }}
+ container:
+ image: amd64/rust
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup Rust & Java toolchain
+ uses: ./.github/actions/setup-builder
+ with:
+ rust-version: ${{env.RUST_VERSION}}
+ - name: Rust test steps
+ uses: ./.github/actions/rust-test
Review Comment:
`upload-test-reports` is a parameter to Java tests
(`./.github/actions/java-test`) so is not needed for the Rust jobs.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]