We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6082543 commit cd556ceCopy full SHA for cd556ce
1 file changed
.github/workflows/test-build.yml
@@ -30,6 +30,11 @@ jobs:
30
- name: Trust workspace
31
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
32
33
+ - name: Install Clang
34
+ if: inputs.arch == 'arm' || inputs.arch == 'ARM'
35
+ run: |
36
+ sudo apt-get install -y clang
37
+
38
- name: make clean
39
run: |
40
make distclean
@@ -45,3 +50,11 @@ jobs:
45
50
- name: Build wolfboot
46
51
47
52
make ${{inputs.make-args}}
53
54
+ - name: Rebuild wolfboot with Clang
55
56
57
+ make distclean
58
+ cp ${{inputs.config-file}} .config
59
+ make -C tools/keytools && make -C tools/bin-assemble
60
+ make USE_CLANG=1 USE_GCC=0 ${{inputs.make-args}}
0 commit comments