Skip to content

Commit 305e1e3

Browse files
xinhaoyuancopybara-github
authored andcommitted
Pin the Ubuntu runner to 22.04 to resolve CI failures.
This is due to ubuntu-latest was updated to 24.04 with Clang/LLVM 18, which is known to have issues with Abseil: llvm/llvm-project#102443 PiperOrigin-RevId: 713103399
1 parent 3b4a590 commit 305e1e3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/bazel_test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ on:
2727
jobs:
2828
run_tests:
2929
name: Run tests
30-
runs-on: ubuntu-latest
30+
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
31+
# is fixed.
32+
runs-on: ubuntu-22.04
3133
timeout-minutes: 60
3234
strategy:
3335
matrix:

.github/workflows/bazel_test_centipede.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ on:
2727
jobs:
2828
run_tests:
2929
name: Run Centipede tests
30-
runs-on: ubuntu-latest
30+
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
31+
# is fixed.
32+
runs-on: ubuntu-22.04
3133
timeout-minutes: 60
3234
strategy:
3335
matrix:

.github/workflows/cmake_test.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ on:
2727
jobs:
2828
run_tests:
2929
name: Run CMake tests
30-
runs-on: ubuntu-latest
30+
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
31+
# is fixed.
32+
runs-on: ubuntu-22.04
3133
timeout-minutes: 30
3234
env:
3335
CCACHE_BASEDIR: ${{ github.workspace }}

0 commit comments

Comments
 (0)