Skip to content

Commit 695e56d

Browse files
github: Switch to upload artifact v4 (#272)
* github: Switch to upload artifact v4 * github: Switch to macos13 runners * cmake: Disable warn as error
1 parent 990eae2 commit 695e56d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
cxx: clang++-10
117117
}
118118
- {
119-
image: macos-11,
119+
image: macos-13,
120120
arch: x86_64,
121121
os: macos,
122122
compiler: appleclang,
@@ -185,7 +185,7 @@ jobs:
185185
run: pwsh .\scripts\test.ps1
186186

187187
- name: archive
188-
uses: actions/upload-artifact@v3
188+
uses: actions/upload-artifact@v4
189189
with:
190190
name: novus-release-${{matrix.config.image}}-${{matrix.config.arch}}-${{matrix.config.compiler}}
191191
path: bin

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if(MSVC)
9696
set(CMAKE_EXE_LINKER_FLAGS "${LINKER_FLAGS_SHARED}")
9797
else()
9898
message(STATUS "Setting unix compiler flags")
99-
set(CXX_FLAGS_SHARED "${CXX_FLAGS_SHARED} -std=c++17 -Werror -Wall -Wextra -fno-strict-aliasing")
99+
set(CXX_FLAGS_SHARED "${CXX_FLAGS_SHARED} -std=c++17 -Wall -Wextra -fno-strict-aliasing")
100100
if(CMAKE_COMPILER_IS_GNUCXX OR MINGW)
101101
message(STATUS "Setting gcc specific compiler flags")
102102
# Disable 'maybe-uninitialized' warning on GCC, to many false positives at the time of writing.

0 commit comments

Comments
 (0)