Skip to content

Commit

Permalink
Updated workflows to run with updated macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
spcaipers-arm authored Nov 7, 2024
1 parent 96ec339 commit 45b4126
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/matrix_includes_buildmgr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"binary_extension":".mac-amd64",
Expand All @@ -10,7 +10,7 @@
"runOn": "publicRepo"
},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"binary_extension":".mac-arm64",
Expand Down
4 changes: 2 additions & 2 deletions .github/matrix_includes_packchk.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"runOn": "publicRepo"
},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"runOn": "publicRepo"
Expand Down
5 changes: 3 additions & 2 deletions .github/matrix_includes_packgen.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"binary": "packgen",
"runOn": "publicRepo"

},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"binary": "packgen",
Expand Down
4 changes: 2 additions & 2 deletions .github/matrix_includes_projmgr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"binary": "csolution",
Expand All @@ -9,7 +9,7 @@
"goswig": true
},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"binary": "csolution",
Expand Down
4 changes: 2 additions & 2 deletions .github/matrix_includes_svdconv.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"runOn": "publicRepo"
},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"runOn": "publicRepo"
Expand Down
4 changes: 2 additions & 2 deletions .github/matrix_includes_test_libs.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"runs_on":"macos-12",
"runs_on":"macos-13",
"target":"darwin",
"arch": "amd64",
"runOn": "publicRepo"
},
{
"runs_on":"macos-12",
"runs_on":"macos-14",
"target":"darwin",
"arch": "arm64",
"runOn": "publicRepo"
Expand Down
2 changes: 1 addition & 1 deletion tools/projmgr/swig/go/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
find_package(SWIG REQUIRED)
include(${SWIG_USE_FILE})

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

Expand Down

0 comments on commit 45b4126

Please sign in to comment.