We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ce6fe commit 0d0f1f6Copy full SHA for 0d0f1f6
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,13 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request: {}
6
+
7
+jobs:
8
+ build_and_test:
9
+ runs-on: ubuntu-slim
10
+ steps:
11
+ - uses: actions/checkout@v6
12
+ - run: make
13
+ - run: make test
Makefile
@@ -25,7 +25,7 @@ endif
25
26
HOST_CC=gcc
27
CC=$(CROSS_PREFIX)gcc
28
-CFLAGS=-Wall -g -MMD -Werror -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
+CFLAGS=-Wall -g -MMD -Werror -Wno-error=unused-result -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
29
HOST_CFLAGS=-Wall -g -MMD -Werror -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
30
ifdef CONFIG_ARM32
31
CFLAGS+=-mthumb
0 commit comments