8000 github/workflows: Use ubuntu-22.04 for unix qemu CI. · malcolm-sparkfun/micropython@790986b · GitHub
[go: up one dir, main page]

8000
Skip to content

Commit 790986b

Browse files
committed
github/workflows: Use ubuntu-22.04 for unix qemu CI.
To use an older version of libffi. Signed-off-by: Damien George <damien@micropython.org>
1 parent 5a5f0cb commit 790986b
Copy full SHA for 790986b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ports_unix.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,8 @@ jobs:
219219
run: tests/run-tests.py --print-failures
220220

221221
qemu_mips:
222-
runs-on: ubuntu-latest
222+
# ubuntu-22.04 is needed for older libffi.
223+
runs-on: ubuntu-22.04
223224
steps:
224225
- uses: actions/checkout@v4
225226
- name: Install packages
@@ -233,7 +234,8 @@ jobs:
233234
run: tests/run-tests.py --print-failures
234235

235236
qemu_arm:
236-
runs-on: ubuntu-latest
237+
# ubuntu-22.04 is needed for older libffi.
238+
runs-on: ubuntu-22.04
237239
steps:
238240
- uses: actions/checkout@v4
239241
- name: Install packages
@@ -247,7 +249,8 @@ jobs:
247249
run: tests/run-tests.py --print-failures
248250

249251
qemu_riscv64:
250-
runs-on: ubuntu-latest
252+
# ubuntu-22.04 is needed for older libffi.
253+
runs-on: ubuntu-22.04
251254
steps:
252255
- uses 3CE3 : actions/checkout@v4
253256
- name: Install packages

0 commit comments

Comments
 (0)
0