Skip to content

Commit b4143a1

Browse files
authored
Revert "ci(sanitize): downgrade to ubuntu v22.04 (#2353)" (#2364)
This reverts commit c3ecaa6.
1 parent a7b33a3 commit b4143a1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/sanitize.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
# TODO: Unpin ubuntu when https://github.com/rust-lang/rust/issues/111073#issuecomment-2561607617 is fixed.
31-
os: [ubuntu-22.04, macos-latest] # No Windows support for sanitizers.
30+
os: [ubuntu-latest, macos-latest] # No Windows support for sanitizers.
3231
sanitizer: [address, thread, leak] # TODO: memory
3332
exclude:
3433
# Memory and leak sanitizers are not supported on macOS.
@@ -62,7 +61,7 @@ jobs:
6261
ASAN_OPTIONS: detect_leaks=1:detect_stack_use_after_return=1
6362
RUST_BACKTRACE: 1
6463
run: |
65-
if [ "${{ matrix.os }}" = "ubuntu-22.04" ]; then
64+
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
6665
sudo apt-get install -y --no-install-recommends llvm
6766
TARGET="x86_64-unknown-linux-gnu"
6867
elif [ "${{ matrix.os }}" = "macos-latest" ]; then

0 commit comments

Comments
 (0)