Skip to content

Commit

Permalink
ci(sanitize): downgrade to ubuntu v22.04 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxinden authored Jan 13, 2025
1 parent ceb88f2 commit 22fd68d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
- os: windows-2019
rust-toolchain: stable
type: debug
# TODO: Remove once https://github.com/rust-lang/rust/issues/111073#issuecomment-2561607617 is fixed.
- os: ubuntu-22.04
rust-toolchain: nightly
type: debug
env:
BUILD_TYPE: ${{ matrix.type == 'release' && '--release' || '' }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -123,7 +127,8 @@ jobs:
if: matrix.type == 'debug' && matrix.rust-toolchain == 'nightly' && endsWith(matrix.os, '-latest')

- name: Run tests with sanitizers
if: (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && matrix.rust-toolchain == 'nightly'
# TODO: Unpin ubuntu when https://github.com/rust-lang/rust/issues/111073#issuecomment-2561607617 is fixed.
if: (matrix.os == 'ubuntu-22.04' || matrix.os == 'macos-latest') && matrix.rust-toolchain == 'nightly'
env:
RUST_LOG: trace
ASAN_OPTIONS: detect_leaks=1:detect_stack_use_after_return=1
Expand Down

0 comments on commit 22fd68d

Please sign in to comment.