Skip to content

Commit

Permalink
Update makefile.yml
Browse files Browse the repository at this point in the history
Add -Werror and clang runs
  • Loading branch information
andikleen committed Sep 7, 2022
1 parent 1cfec29 commit 686ceea
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ jobs:
run: ./autogen.sh && ./configure

- name: Install dependencies
run: make
run: make

- name: Werror run
run: make clean ; CFLAGS="-O2 -Wall -Werror" make

- name: clang run
run: make clean ; CFLAGS="-O2 -Wall -Werror" CC=clang make

- name: Run check
run: make check
Expand Down

0 comments on commit 686ceea

Please sign in to comment.