Skip to content

Commit

Permalink
Pin the Ubuntu runner to 22.04 to resolve CI failures.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
xinhaoyuan authored and copybara-github committed Jan 8, 2025
1 parent 3b4a590 commit 305e1e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/bazel_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ on:
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-latest
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
# is fixed.
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
matrix:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/bazel_test_centipede.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ on:
jobs:
run_tests:
name: Run Centipede tests
runs-on: ubuntu-latest
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
# is fixed.
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
matrix:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cmake_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ on:
jobs:
run_tests:
name: Run CMake tests
runs-on: ubuntu-latest
# TODO(xinhaoyuan): Bump to 24.04 after https://github.com/llvm/llvm-project/issues/102443
# is fixed.
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
CCACHE_BASEDIR: ${{ github.workspace }}
Expand Down

0 comments on commit 305e1e3

Please sign in to comment.