We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e93f1b commit 588a44eCopy full SHA for 588a44e
.github/workflows/build.yml
@@ -60,3 +60,20 @@ jobs:
60
build/**/*.bin
61
build/**/*.map
62
build/**/*.pbpack
63
+
64
+ - name: Configure (QEMU)
65
+ if: ${{ matrix.board != 'asterix_vla_dvb1' }}
66
+ run: ./waf clean configure --board ${{ matrix.board }} --nojs --qemu
67
68
+ - name: Build FW (QEMU)
69
70
+ run: ./waf build qemu_image_micro qemu_image_spi
71
72
+ - name: Store firmware images (QEMU)
73
74
+ uses: actions/upload-artifact@v4
75
+ with:
76
+ name: firmware-${{ matrix.board }}-qemu
77
+ path: |
78
+ build/qemu_micro_flash.bin
79
+ build/qemu_spi_flash.bin
0 commit comments