Skip to content

Commit

Permalink
Improve the speed of CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
shzhxh committed Nov 21, 2022
1 parent ba3fcb2 commit d8c3a79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:

zircon-core-test:
name: Zircon Core Test Baremetal
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:

linux-libc-test-baremetal:
name: Linux Libc Test Baremetal
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -203,15 +203,15 @@ jobs:

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

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

linux-other-test-baremetal:
name: Linux Other Test Baremetal
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit d8c3a79

Please sign in to comment.