Skip to content

Commit 45b4126

Browse files
Updated workflows to run with updated macOS
1 parent 96ec339 commit 45b4126

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

.github/matrix_includes_buildmgr.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"binary_extension":".mac-amd64",
@@ -10,7 +10,7 @@
1010
"runOn": "publicRepo"
1111
},
1212
{
13-
"runs_on":"macos-12",
13+
"runs_on":"macos-14",
1414
"target":"darwin",
1515
"arch": "arm64",
1616
"binary_extension":".mac-arm64",

.github/matrix_includes_packchk.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"runOn": "publicRepo"
77
},
88
{
9-
"runs_on":"macos-12",
9+
"runs_on":"macos-14",
1010
"target":"darwin",
1111
"arch": "arm64",
1212
"runOn": "publicRepo"

.github/matrix_includes_packgen.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"binary": "packgen",
77
"runOn": "publicRepo"
8+
89
},
910
{
10-
"runs_on":"macos-12",
11+
"runs_on":"macos-14",
1112
"target":"darwin",
1213
"arch": "arm64",
1314
"binary": "packgen",

.github/matrix_includes_projmgr.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"binary": "csolution",
@@ -9,7 +9,7 @@
99
"goswig": true
1010
},
1111
{
12-
"runs_on":"macos-12",
12+
"runs_on":"macos-14",
1313
"target":"darwin",
1414
"arch": "arm64",
1515
"binary": "csolution",

.github/matrix_includes_svdconv.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"runOn": "publicRepo"
77
},
88
{
9-
"runs_on":"macos-12",
9+
"runs_on":"macos-14",
1010
"target":"darwin",
1111
"arch": "arm64",
1212
"runOn": "publicRepo"

.github/matrix_includes_test_libs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[
22
{
3-
"runs_on":"macos-12",
3+
"runs_on":"macos-13",
44
"target":"darwin",
55
"arch": "amd64",
66
"runOn": "publicRepo"
77
},
88
{
9-
"runs_on":"macos-12",
9+
"runs_on":"macos-14",
1010
"target":"darwin",
1111
"arch": "arm64",
1212
"runOn": "publicRepo"

tools/projmgr/swig/go/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
find_package(SWIG REQUIRED)
22
include(${SWIG_USE_FILE})
33

4-
set(CMAKE_SWIG_FLAGS -c++ -go -cgo -intgosize 64 -D${CMAKE_SYSTEM_NAME})
4+
set(CMAKE_SWIG_FLAGS -c++ -cgo -intgosize 64 -D${CMAKE_SYSTEM_NAME})
55
include_directories(projmgr-go PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../../include ${PROJECT_BINARY_DIR})
66
set_source_files_properties(projmgr.i PROPERTIES CPLUSPLUS ON)
77

0 commit comments

Comments
 (0)