Skip to content

Commit

Permalink
cfl: fix randomly failed builds
Browse files Browse the repository at this point in the history
GitHub action builds started to randomly fail with a reason:
"The runner has received a shutdown signal.".
The issue [1] and discussion [2] points to a workaround:
replace a "ubuntu-latest" with "ubuntu-22.04" and it started to
work.

The patch replaces "ubuntu-latest" with "ubuntu-22.04" in CFL
workflows.

1. actions/runner-images#6709
2. actions/runner-images#7188
  • Loading branch information
ligurio committed Nov 25, 2024
1 parent f773058 commit 59ae39b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cflite_batch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cflite_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# are covered by fuzzing.

Coverage:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
# code coverage.

Pruning:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cflite_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ permissions: read-all

jobs:
luajit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 59ae39b

Please sign in to comment.