Skip to content

Commit 905efcf

Browse files
committed
cfl: fix randomly failed builds
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-20.04" and it started to work. Note that the problem reproduce with "ubuntu-22.04" as well. The patch replaces "ubuntu-latest" with "ubuntu-20.04" in CFL workflows. 1. actions/runner-images#6709 2. https://github.com/actions/runner-images/discussions/7188
1 parent d8f7c82 commit 905efcf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cflite_batch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: read-all
1515

1616
jobs:
1717
luajit:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-20.04
1919
strategy:
2020
fail-fast: false
2121
matrix:

.github/workflows/cflite_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions: read-all
1010

1111
jobs:
1212
luajit:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414
strategy:
1515
fail-fast: false
1616
matrix:

.github/workflows/cflite_cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# are covered by fuzzing.
1717

1818
Coverage:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-20.04
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: ./.github/actions/setup
@@ -46,7 +46,7 @@ jobs:
4646
# code coverage.
4747

4848
Pruning:
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-20.04
5050
steps:
5151
- uses: actions/checkout@v4
5252
- uses: ./.github/actions/setup

.github/workflows/cflite_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ permissions: read-all
3535

3636
jobs:
3737
luajit:
38-
runs-on: ubuntu-latest
38+
runs-on: ubuntu-20.04
3939
strategy:
4040
fail-fast: false
4141
matrix:

0 commit comments

Comments
 (0)