Skip to content

Commit 8e101df

Browse files
committed
Try using the macos-15 image, and set C++11 standard
1 parent d7aede7 commit 8e101df

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_and_test-mac.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ concurrency:
1414
cancel-in-progress: ${{github.event_name == 'pull_request'}}
1515

1616
jobs:
17-
build:
18-
name: macOS 14 (M1)
19-
runs-on: macos-14
17+
build-macos:
18+
name: macOS 15 (M1)
19+
runs-on: macos-15
2020
env:
2121
FANS_BUILD_DIR: build
2222
strategy:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include(CMakePackageConfigHelpers)
1414

1515
set(CMAKE_CXX_STANDARD_REQUIRED ON)
1616
set(CMAKE_CXX_EXTENSIONS OFF)
17-
#set(CMAKE_CXX_STANDARD 14)
17+
set(CMAKE_CXX_STANDARD 11)
1818

1919
# with -fno-implicit-templates I get linker errors when using std:: stuff
2020
# TODO: should be developer specific, by using e.g. CMake Presets

0 commit comments

Comments
 (0)