Browse Source

github/workflows: Run unix and qemu-arm workflows when tests change.

Signed-off-by: Damien George <damien@micropython.org>
pull/6661/head
Damien George 4 years ago
parent
commit
f7225d1c95
  1. 3
      .github/workflows/ports_qemu-arm.yml
  2. 1
      .github/workflows/ports_unix.yml

3
.github/workflows/ports_qemu-arm.yml

@ -11,6 +11,7 @@ on:
- 'lib/**' - 'lib/**'
- 'drivers/**' - 'drivers/**'
- 'ports/qemu-arm/**' - 'ports/qemu-arm/**'
- 'tests/**'
jobs: jobs:
build_and_test: build_and_test:
@ -19,7 +20,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install packages - name: Install packages
run: source tools/ci.sh && ci_qemu_arm_setup run: source tools/ci.sh && ci_qemu_arm_setup
- name: Build - name: Build and run test suite
run: source tools/ci.sh && ci_qemu_arm_build run: source tools/ci.sh && ci_qemu_arm_build
- name: Print failures - name: Print failures
if: failure() if: failure()

1
.github/workflows/ports_unix.yml

@ -11,6 +11,7 @@ on:
- 'lib/**' - 'lib/**'
- 'examples/**' - 'examples/**'
- 'ports/unix/**' - 'ports/unix/**'
- 'tests/**'
jobs: jobs:
minimal: minimal:

Loading…
Cancel
Save