Skip to content

Commit

Permalink
Merge pull request #718 from cryspen/franziskus/disable-macos-asan
Browse files Browse the repository at this point in the history
disable macos asan
  • Loading branch information
jschneider-bensch authored Dec 16, 2024
2 parents 767c2a7 + 2aa9d91 commit fc934b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ecdh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if: ${{ matrix.bits == 64 }}

- name: πŸ› οΈ Setup Rust Nightly
run: rustup toolchain install nightly
run: rustup toolchain install nightly-2024-12-14

- name: πŸ› οΈ Setup Ubuntu x86
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -82,9 +82,10 @@ jobs:
- name: πŸ”¨ Build Release
run: cargo build --verbose --release $RUST_TARGET_FLAG

# TODO: https://github.com/cryspen/libcrux/issues/717
- name: πŸƒπŸ» Asan MacOS
if: ${{ matrix.os == 'macos-latest' }}
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target aarch64-apple-darwin
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly-2024-12-14 test --release --target aarch64-apple-darwin

# - name: ⬆ Upload build
# uses: ./.github/actions/upload_artifacts
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/kem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
if: ${{ matrix.bits == 64 }}

- name: πŸ› οΈ Setup Rust Nightly
run: rustup toolchain install nightly
run: rustup toolchain install nightly-2024-12-14

- name: πŸ› οΈ Setup Ubuntu x86
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }}
Expand Down Expand Up @@ -82,9 +82,10 @@ jobs:
- name: πŸ”¨ Build Release
run: cargo build --verbose --release $RUST_TARGET_FLAG

# TODO: https://github.com/cryspen/libcrux/issues/717
- name: πŸƒπŸ» Asan MacOS
if: ${{ matrix.os == 'macos-latest' }}
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target aarch64-apple-darwin
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly-2024-12-14 test --release --target aarch64-apple-darwin

# - name: ⬆ Upload build
# uses: ./.github/actions/upload_artifacts
Expand Down

0 comments on commit fc934b3

Please sign in to comment.