Skip to content

Commit

Permalink
Fix ci errors.
Browse files Browse the repository at this point in the history
Signed-off-by: lucasliang <[email protected]>
  • Loading branch information
LykxSassinator committed Apr 22, 2024
1 parent d27dea5 commit 74cd975
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ jobs:
make format
git diff --exit-code
- name: Clippy
run: make clippy
run: ulimit -S -n `ulimit -H -n` && make clippy
env:
EXTRA_CARGO_ARGS: '--fix'
- name: Run tests
run: make test
run: ulimit -S -n `ulimit -H -n` && make test
env:
RUST_BACKTRACE: 1
EXTRA_CARGO_ARGS: '--verbose'
- name: Run asan tests
if: ${{ matrix.os == 'ubuntu-latest' }}
run: make test
run: ulimit -S -n `ulimit -H -n` && make test
env:
RUST_BACKTRACE: 1
RUSTFLAGS: '-Zsanitizer=address'
Expand All @@ -69,11 +69,11 @@ jobs:
with:
sharedKey: ${{ matrix.os }}-stable
- name: Clippy
run: make clippy
run: ulimit -S -n `ulimit -H -n` && make clippy
env:
WITH_STABLE_TOOLCHAIN: 'force'
- name: Run tests
run: make test
run: ulimit -S -n `ulimit -H -n` && make test
env:
RUST_BACKTRACE: 1
EXTRA_CARGO_ARGS: '--verbose'
Expand All @@ -99,7 +99,7 @@ jobs:
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install --locked grcov; fi
- name: Run tests
run: |
make test_matrix
ulimit -S -n `ulimit -H -n` && make test_matrix
env:
RUSTFLAGS: '-Cinstrument-coverage'
LLVM_PROFILE_FILE: '%p-%m.profraw'
Expand Down

0 comments on commit 74cd975

Please sign in to comment.