Skip to content

Commit 8040681

Browse files
authored
Merge pull request #105 from InsightSoftwareConsortium/branch-v5.4.2
ENH: Add builds for ITK-5.4.2
2 parents bf5bda0 + aafbe88 commit 8040681

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/build-test-cxx.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
description: 'Git version tag or commit hash for the base ITK build'
2424
required: false
2525
type: string
26-
default: 'v5.4.0'
26+
default: 'v5.4.2'
2727
itk-module-deps:
2828
description: 'Colon-delimited list of ITK remote module dependencies to build. Format as module_name@tag:...'
2929
# example: MeshToPolyData@3ad8f08:BSplineGradient@0.3.0
@@ -54,6 +54,10 @@ jobs:
5454
c-compiler: "clang"
5555
cxx-compiler: "clang++"
5656
cmake-build-type: "MinSizeRel"
57+
- os: macos-15
58+
c-compiler: "clang"
59+
cxx-compiler: "clang++"
60+
cmake-build-type: "MinSizeRel"
5761

5862
steps:
5963
- uses: actions/checkout@v4
@@ -77,16 +81,21 @@ jobs:
7781
- name: Get specific version of CMake, Ninja
7882
uses: lukka/get-cmake@v3.29.0
7983

80-
- name: 'Specific XCode version'
84+
- name: 'Specific XCode version 14.3.1'
8185
if: matrix.os == 'macos-13'
8286
run: |
8387
sudo xcode-select -s "/Applications/Xcode_14.3.1.app"
8488
85-
- name: 'Specific XCode version'
89+
- name: 'Specific XCode version 15.0.1'
8690
if: matrix.os == 'macos-14'
8791
run: |
8892
sudo xcode-select -s "/Applications/Xcode_15.0.1.app"
8993
94+
- name: 'Specific XCode version = 16.2'
95+
if: matrix.os == 'macos-15'
96+
run: |
97+
sudo xcode-select -s "/Applications/Xcode_16.2.0.app"
98+
9099
- name: Download ITK
91100
run: |
92101
cd ..

0 commit comments

Comments
 (0)