Skip to content

Commit

Permalink
less debug in a few more places
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Mar 7, 2021
1 parent 2739ba4 commit 7bd587e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Expand Up @@ -66,6 +66,8 @@ jobs:
run: |
export CARGO_HOME="/github/home/.cargo"
export CARGO_TARGET_DIR="/github/home/target"
# do not produce debug symbols to keep memory usage down
export RUSTFLAGS="-C debuginfo=0"
cd rust
cargo build
Expand Down Expand Up @@ -164,6 +166,8 @@ jobs:
run: |
export CARGO_HOME="/github/home/.cargo"
export CARGO_TARGET_DIR="/github/home/target"
# do not produce debug symbols to keep memory usage down
export RUSTFLAGS="-C debuginfo=0"
cd rust/arrow
cargo test --features "simd"
Expand Down Expand Up @@ -390,5 +394,7 @@ jobs:
run: |
export CARGO_HOME="/github/home/.cargo"
export CARGO_TARGET_DIR="/github/home/target"
# do not produce debug symbols to keep memory usage down
export RUSTFLAGS="-C debuginfo=0"
cd rust/arrow
cargo build --target wasm32-unknown-unknown

0 comments on commit 7bd587e

Please sign in to comment.