Skip to content

Commit

Permalink
reduce GCC opt level
Browse files Browse the repository at this point in the history
  • Loading branch information
janondrusek committed Oct 23, 2023
1 parent 73e31bb commit 7f244fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/libunifex-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
io_sys: io_uring,
build_type: RelWithDebInfo,
cc: "gcc-11", cxx: "g++-11",
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20"
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20 -D CMAKE_CXX_FLAGS:STRING=-O1"
}
- {
name: "Linux GCC 12 Debug (C++17)", artifact: "Linux.tar.xz",
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
io_sys: io_uring,
build_type: RelWithDebInfo,
cc: "gcc-12", cxx: "g++-12",
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20"
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20 -D CMAKE_CXX_FLAGS:STRING=-O1"
}
- {
name: "Linux GCC 13 Debug (C++17)", artifact: "Linux.tar.xz",
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
io_sys: io_uring,
build_type: RelWithDebInfo,
cc: "gcc-13", cxx: "g++-13",
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20"
cmake_args: "-D CMAKE_CXX_STANDARD:STRING=20 -D CMAKE_CXX_FLAGS:STRING=-O1"
}
- {
name: "Linux Clang 12 Debug (C++17)", artifact: "Linux.tar.xz",
Expand Down

0 comments on commit 7f244fe

Please sign in to comment.