Skip to content

Commit 9421ff1

Browse files
authored
Merge pull request linuxwacom#324 from jigpu/github-error-workaround
github: Add '-Wno-error=pointer-sign' to 4.5+ builds for I2C driver
2 parents 3fe3a45 + b77209d commit 9421ff1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- kernel: "4.1"
2323
compile_cflags: -Wno-error=format-truncation
2424
- kernel: "4.5"
25-
compile_cflags: -Wno-error=format-truncation
25+
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
2626
- kernel: "4.6"
27-
compile_cflags: -Wno-error=format-truncation
27+
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
2828
- kernel: "4.14"
29-
compile_cflags: -Wno-error=format-truncation
29+
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
3030
- kernel: "5.10"
31-
compile_cflags: -Wno-error=format-truncation
31+
compile_cflags: -Wno-error=format-truncation -Wno-error=pointer-sign
3232
steps:
3333
- name: Checkout the repo
3434
uses: actions/checkout@v2

0 commit comments

Comments
 (0)