We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f32fa1 commit 846bed1Copy full SHA for 846bed1
.github/workflows/build.yml
@@ -9,7 +9,7 @@ on:
9
10
jobs:
11
build:
12
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
13
14
steps:
15
- name: Checkout code
@@ -30,4 +30,8 @@ jobs:
30
run: chmod +x build.sh
31
32
- name: Run build script
33
- run: ./build.sh -m all -k y -s y
+ run: |
34
+ # Inject CFLAGS to ignore strict prototype errors
35
+ export CFLAGS="$CFLAGS -Wno-error=strict-prototypes -Wno-strict-prototypes"
36
+ export CPPFLAGS="$CPPFLAGS -Wno-error=strict-prototypes -Wno-strict-prototypes"
37
+ ./build.sh -m all -k y -s y
0 commit comments