Skip to content

Commit

Permalink
changed -Werror to -Wall
Browse files Browse the repository at this point in the history
  • Loading branch information
simsong committed Dec 5, 2024
1 parent bb3dd5d commit 0dc042f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
linkage: "shared"
compiler: "gcc"
runner: "ubuntu-22.04"
configure_opts: "CFLAGS=-Werror CXXFLAGS=-Werror"
#configure_opts: "CFLAGS=-Werror CXXFLAGS=-Werror"
configure_opts: "CFLAGS=-Wall CXXFLAGS=-Wall"
codecov: "no"
prefix:
address_sanitizer: "yes"
Expand All @@ -49,7 +50,8 @@ jobs:
linkage: "shared"
compiler: "clang"
runner: "ubuntu-22.04"
configure_opts: "CC=clang CXX=clang++ CFLAGS=-Werror CXXFLAGS=-Werror"
#configure_opts: "CC=clang CXX=clang++ CFLAGS=-Werror CXXFLAGS=-Werror"
configure_opts: "CC=clang CXX=clang++ CFLAGS=-Wall CXXFLAGS=-Wall"
codecov: "no"
prefix: ""
address_sanitizer: "yes"
Expand Down

0 comments on commit 0dc042f

Please sign in to comment.