Skip to content

Commit

Permalink
Revert "Fix MacOS compilation errs."
Browse files Browse the repository at this point in the history
This reverts commit 5277389.
  • Loading branch information
LykxSassinator committed Apr 22, 2024
1 parent 5277389 commit 953539c
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,15 +33,15 @@ jobs:
make format
git diff --exit-code
- name: Clippy
run: ulimit -S -n `ulimit -H -n` && make clippy
run: make clippy
- name: Run tests
run: ulimit -S -n `ulimit -H -n` && make test
run: make test
env:
RUST_BACKTRACE: 1
EXTRA_CARGO_ARGS: '--verbose'
- name: Run asan tests
if: ${{ matrix.os == 'ubuntu-latest' }}
run: ulimit -S -n `ulimit -H -n` && make test
run: make test
env:
RUST_BACKTRACE: 1
RUSTFLAGS: '-Zsanitizer=address'
Expand All @@ -67,11 +67,11 @@ jobs:
with:
sharedKey: ${{ matrix.os }}-stable
- name: Clippy
run: ulimit -S -n `ulimit -H -n` && make clippy
run: make clippy
env:
WITH_STABLE_TOOLCHAIN: 'force'
- name: Run tests
run: ulimit -S -n `ulimit -H -n` && make test
run: make test
env:
RUST_BACKTRACE: 1
EXTRA_CARGO_ARGS: '--verbose'
Expand All @@ -97,7 +97,7 @@ jobs:
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install --locked grcov; fi
- name: Run tests
run: |
ulimit -S -n `ulimit -H -n` && make test_matrix
make test_matrix
env:
RUSTFLAGS: '-Cinstrument-coverage'
LLVM_PROFILE_FILE: '%p-%m.profraw'
Expand Down

0 comments on commit 953539c

Please sign in to comment.