Skip to content

Commit 4a153bf

Browse files
committed
ci: a temporal fix for llvm/llvm-project#99502
1 parent 743a3ec commit 4a153bf

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.github/workflows/bench.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
bench:
2525
# Skip if this workflow is triggered by dependabot.
2626
if: ${{ github.actor != 'dependabot[bot]' }}
27-
runs-on: ubuntu-latest
27+
# a temporal fix for llvm/llvm-project#99502
28+
#runs-on: ubuntu-latest
29+
runs-on: ubuntu-24.04
2830
steps:
2931
- uses: actions/checkout@v4
3032
with:

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ on:
1212
jobs:
1313
build:
1414
uses: ./.github/workflows/build.yml
15+
with:
16+
# a temporal fix for llvm/llvm-project#99502
17+
runner: ubuntu-24.04

.github/workflows/coverage.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
coverage:
2525
# Skip if this workflow is triggered by dependabot.
2626
if: ${{ github.actor != 'dependabot[bot]' }}
27-
runs-on: ubuntu-latest
27+
# a temporal fix for llvm/llvm-project#99502
28+
#runs-on: ubuntu-latest
29+
runs-on: ubuntu-24.04
2830
continue-on-error: true
2931
steps:
3032
# Remove packages in order to avoid "No space left on device" error in `make coverage`.

.github/workflows/pull-request.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ on:
1212
jobs:
1313
build:
1414
uses: ./.github/workflows/build.yml
15+
with:
16+
# a temporal fix for llvm/llvm-project#99502
17+
runner: ubuntu-24.04

0 commit comments

Comments
 (0)