alamb commented on a change in pull request #1737:
URL: https://github.com/apache/arrow-datafusion/pull/1737#discussion_r798930974
##########
File path: .github/workflows/rust.yml
##########
@@ -58,12 +58,18 @@ jobs:
rustup toolchain install ${{ matrix.rust }}
rustup default ${{ matrix.rust }}
rustup component add rustfmt
- - name: Build Workspace
+ - name: Build workspace in debug mode
run: |
cargo build
env:
CARGO_HOME: "/github/home/.cargo"
- CARGO_TARGET_DIR: "/github/home/target"
+ CARGO_TARGET_DIR: "/github/home/target/debug"
+ - name: Build workspace in release mode
+ run: |
+ cargo build --release
Review comment:
```suggestion
cargo check --release
```
--
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]