Skip to content

Commit

Permalink
CI: fix the build with gcc 13
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Nov 10, 2023
1 parent d52da78 commit 32601d2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
- name: Build
shell: msys2 {0}
run: |
# XXX: cygwin still uses gcc v11 so we get new warnings, resulting in errors.
# We can't selectively disable warnigns since our cross compiled is also
# too old and doesn't understand the new warning flags, so we need to disable
# all errors for now.
export CXXFLAGS="-Wno-error -Wno-narrowing"
(cd winsup && ./autogen.sh)
./configure --disable-dependency-tracking
make -j8
Expand Down

0 comments on commit 32601d2

Please sign in to comment.