We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efcdb10 commit 2161d7dCopy full SHA for 2161d7d
.github/workflows/build-prf.yml
@@ -25,6 +25,7 @@ jobs:
25
strategy:
26
matrix:
27
board: ["asterix"]
28
+ mode: ["normal", "mfg"]
29
30
steps:
31
- name: Mark Github workspace as safe
@@ -42,7 +43,12 @@ jobs:
42
43
pip install -r requirements.txt
44
45
- name: Configure
- run: ./waf configure --board ${{ matrix.board }}
46
+ run: |
47
+ if [ "${{ matrix.mode }}" == "mfg" ]; then
48
+ OPTS="--mfg --nohash"
49
+ fi
50
+
51
+ ./waf configure --board ${{ matrix.board }} $OPTS
52
53
- name: Build
54
run: ./waf build_prf
@@ -53,7 +59,7 @@ jobs:
59
- name: Store
60
uses: actions/upload-artifact@v4
55
61
with:
56
- name: prf-${{ matrix.board }}
62
+ name: prf-${{ matrix.board }}-${{ matrix.mode }}
57
63
path: |
58
64
build/**/*.elf
65
build/**/*.pbz
0 commit comments