Skip to content

Commit 84e07c5

Browse files
Label run steps
1 parent d0f12ce commit 84e07c5

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,12 @@ jobs:
297297
runs-on: ubuntu-24.04
298298
needs: [build-all]
299299
steps:
300-
- run: sudo apt-get -y update && sudo apt-get -y install qemu-system-arm
300+
- name: Install QEMU
301+
run: sudo apt-get -y update && sudo apt-get -y install qemu-system-arm
301302
- name: Checkout
302303
uses: actions/checkout@v4
303-
- run: ./tests.sh
304+
- name: Run tests in QEMU
305+
run: ./tests.sh
304306

305307
# Run some programs in QEMU 9 on Windows (including MPS3-AN536 examples)
306308
qemu-test-windows:
@@ -309,8 +311,10 @@ jobs:
309311
steps:
310312
- name: Checkout
311313
uses: actions/checkout@v4
312-
- run: choco install qemu
313-
- run: ./tests.sh
314+
- name: Install QEMU
315+
run: choco install qemu
316+
- name: Run tests in QEMU
317+
run: ./tests.sh
314318

315319
# Gather all the above qemu jobs together for the purposes of getting an overall pass-fail
316320
qemu-test-all:

0 commit comments

Comments
 (0)