Skip to content

Commit 5da7745

Browse files
committed
CI: Switch ASan default SIMD jobs to Ubuntu 22.04
in an attempt to avoid the Ubuntu 24.04 ASan AVX-512 false positives. Fixes #5875 hopefully this time for real
1 parent 5ae287b commit 5da7745

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ jobs:
1313
run: git diff-index --check --cached b1b622f691d40196815939e4736a5da71befd206
1414

1515
asan:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
env:
1818
CC: gcc
1919
TARGET: x86_64
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: install dependencies
2323
run: .ci/install-dependencies.sh
2424
- name: build check
2525
run: .ci/run-build-and-tests.sh --enable-fuzz --enable-asan
2626

2727
asan-disable-all:
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
env:
3030
CC: gcc
3131
TARGET: x86_64
@@ -37,7 +37,7 @@ jobs:
3737
run: .ci/run-build-and-tests.sh --enable-asan --disable-openmp --disable-simd --without-openssl
3838

3939
asan-disable-openmp:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-22.04
4141
env:
4242
CC: gcc
4343
TARGET: x86_64
@@ -49,7 +49,7 @@ jobs:
4949
run: .ci/run-build-and-tests.sh --enable-asan --disable-openmp
5050

5151
asan-without-openssl:
52-
runs-on: ubuntu-latest
52+
runs-on: ubuntu-22.04
5353
env:
5454
CC: gcc
5555
TARGET: x86_64

0 commit comments

Comments
 (0)