We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea0b4fb commit 5f8b79aCopy full SHA for 5f8b79a
.github/workflows/test-elf-scattered.yml
@@ -0,0 +1,36 @@
1
+name: Test for scattered elf validation
2
+
3
+on:
4
+ push:
5
+ branches: [ 'master', 'main', 'release/**' ]
6
+ pull_request:
7
+ branches: [ '*' ]
8
9
+jobs:
10
+ elf_scattered_test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ with:
16
+ submodules: true
17
18
+ - name: make clean
19
+ run: |
20
+ make keysclean
21
22
+ - name: Select config
23
24
+ cp config/examples/sim.config .config
25
26
+ - name: Build tools
27
28
+ make -C tools/keytools && make -C tools/bin-assemble
29
30
+ - name: Build wolfboot.elf
31
32
+ make clean && make test-sim-internal-flash-with-update ELF=1 ELF_SCATTERED=1
33
34
+ - name: Run bootloader with no arguments
35
36
+ ./wolfboot.elf
0 commit comments