Skip to content

Commit 43ff1c9

Browse files
authored
Merge pull request #400 from shzhxh/master
Improve the speed of CI testing
2 parents ba3fcb2 + d8c3a79 commit 43ff1c9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
zircon-core-test:
8181
name: Zircon Core Test Baremetal
82-
runs-on: ubuntu-latest
82+
runs-on: ubuntu-20.04
8383
steps:
8484
- uses: actions/checkout@v3
8585
with:
@@ -154,7 +154,7 @@ jobs:
154154

155155
linux-libc-test-baremetal:
156156
name: Linux Libc Test Baremetal
157-
runs-on: ubuntu-latest
157+
runs-on: ubuntu-20.04
158158
strategy:
159159
fail-fast: false
160160
matrix:
@@ -203,15 +203,15 @@ jobs:
203203

204204
- name: Run fast tests
205205
if: github.event_name != 'schedule'
206-
run: cd tests && python3 linux_libc_test.py --arch ${{ matrix.arch }} --fast
206+
run: cd tests && python3 linux_libc_test-qemu.py --arch ${{ matrix.arch }} --fast
207207

208208
- name: Run full tests
209209
if: github.event_name == 'schedule'
210-
run: cd tests && python3 linux_libc_test.py --arch ${{ matrix.arch }}
210+
run: cd tests && python3 linux_libc_test-qemu.py --arch ${{ matrix.arch }}
211211

212212
linux-other-test-baremetal:
213213
name: Linux Other Test Baremetal
214-
runs-on: ubuntu-latest
214+
runs-on: ubuntu-20.04
215215
strategy:
216216
fail-fast: false
217217
matrix:

0 commit comments

Comments
 (0)