-
Notifications
You must be signed in to change notification settings - Fork 6
211 lines (191 loc) · 7.6 KB
/
build-test-cxx.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
name: 'Build, Test ITK Remote Module'
on:
workflow_call:
inputs:
cmake-options:
description: 'CMake configuration parameters for the module under test'
required: false
type: string
ctest-options:
description: 'CTest CLI run options for the module under test'
required: false
type: string
warnings-to-ignore:
description: 'Warning string patterns that should be ignored for CTest/CDash reporting'
required: false
type: string
itk-cmake-options:
description: 'CMake configuration parameters for the base ITK build'
required: false
type: string
itk-git-tag:
description: 'Git version tag or commit hash for the base ITK build'
required: false
type: string
default: 'v5.4.2'
itk-module-deps:
description: 'Colon-delimited list of ITK remote module dependencies to build. Format as module_name@tag:...'
# example: MeshToPolyData@3ad8f08:[email protected]
required: false
type: string
jobs:
build-test-cxx:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ubuntu-22.04, windows-2022, macos-13, macos-15]
include:
- os: ubuntu-22.04
c-compiler: "gcc"
cxx-compiler: "g++"
cmake-build-type: "MinSizeRel"
- os: windows-2022
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
cmake-build-type: "Release"
- os: macos-13
c-compiler: "clang"
cxx-compiler: "clang++"
cmake-build-type: "MinSizeRel"
- os: macos-15
c-compiler: "clang"
cxx-compiler: "clang++"
cmake-build-type: "MinSizeRel"
steps:
- uses: actions/checkout@v4
- name: Free Disk Space (Ubuntu)
if: matrix.os == 'ubuntu-22.04'
uses: jlumbroso/[email protected]
with:
large-packages: false
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ninja
- name: Get specific version of CMake, Ninja
uses: lukka/[email protected]
- name: 'Specific XCode version 14.3.1'
if: matrix.os == 'macos-13'
run: |
sudo xcode-select -s "/Applications/Xcode_14.3.1.app"
- name: 'Specific XCode version = 16.2'
if: matrix.os == 'macos-15'
run: |
sudo xcode-select -s "/Applications/Xcode_16.2.0.app"
- name: Download ITK
run: |
cd ..
git clone https://github.com/InsightSoftwareConsortium/ITK.git
cd ITK
git checkout ${{ inputs.itk-git-tag }}
- name: Build ITK
if: matrix.os != 'windows-2022'
shell: bash
run: |
cd ..
mkdir ITK-build
cd ITK-build
MODULE_ARGS=""
MODULE_DEPS=${{ inputs.itk-module-deps }}
for MODULE_INFO in ${MODULE_DEPS//:/ }; do
MODULE_NAME=`(echo ${MODULE_INFO} | cut -d'@' -f 1)`
MODULE_ARGS="${MODULE_ARGS} -DModule_${MODULE_NAME}:BOOL=ON"
MODULE_TAG=`(echo ${MODULE_INFO} | cut -d'@' -f 2)`
if [[ -n ${MODULE_TAG} ]]; then
MODULE_ARGS+=" -DModule_${MODULE_NAME}_GIT_TAG:STRING=${MODULE_TAG}"
fi
done
if [[ -n $MODULE_ARGS ]]; then
echo "Building with modules: $MODULE_ARGS"
fi
cmake -DCMAKE_C_COMPILER:FILEPATH="${{ matrix.c-compiler }}" -DBUILD_SHARED_LIBS:BOOL=ON -DCMAKE_CXX_COMPILER="${{ matrix.cxx-compiler }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.cmake-build-type }} -DBUILD_TESTING:BOOL=OFF ${{ inputs.itk-cmake-options }} ${MODULE_ARGS} -GNinja ../ITK
ninja
- name: Build ITK
if: matrix.os == 'windows-2022'
shell: pwsh
run: |
Set-PSDebug -Trace 1
cd ..
& "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Launch-VsDevShell.ps1" -Arch amd64 -SkipAutomaticLocation
mkdir ITK-build
cd ITK-build
$MODULE_ARGS=""
$MODULE_DEPS="${{ inputs.itk-module-deps }}"
$MODULES_LIST = $MODULE_DEPS.split(":")
foreach($MODULE_INFO in $MODULES_LIST) {
if($MODULE_ARGS) { $MODULE_ARGS += " " }
$MODULE_NAME = $MODULE_INFO.split("@")[0]
$MODULE_ARGS += "-DModule_$MODULE_NAME`:BOOL=ON"
$MODULE_TAG = $MODULE_INFO.split("@")[1]
if($MODULE_TAG) {
$MODULE_ARGS += " -DModule_$MODULE_NAME`_GIT_TAG:STRING=$MODULE_TAG"
}
}
if($MODULE_ARGS) {
echo "Building with parameters: ${{ inputs.itk-cmake-options }} $MODULE_ARGS"
}
cmake -DCMAKE_C_COMPILER:FILEPATH="${{ matrix.c-compiler }}" -DBUILD_SHARED_LIBS:BOOL=ON -DCMAKE_CXX_COMPILER="${{ matrix.cxx-compiler }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.cmake-build-type }} -DBUILD_TESTING:BOOL=OFF ${{ inputs.itk-cmake-options }} $MODULE_ARGS.split(" ") -GNinja ../ITK
ninja
- name: Fetch CTest driver script
run: |
curl -L https://raw.githubusercontent.com/InsightSoftwareConsortium/ITK/dashboard/itk_common.cmake -O
- name: Configure CTest script
shell: bash
run: |
operating_system="${{ matrix.os }}"
cat > dashboard.cmake << EOF
set(CTEST_SITE "GitHubActions")
file(TO_CMAKE_PATH "\$ENV{GITHUB_WORKSPACE}/.." CTEST_DASHBOARD_ROOT)
file(TO_CMAKE_PATH "\$ENV{GITHUB_WORKSPACE}/" CTEST_SOURCE_DIRECTORY)
file(TO_CMAKE_PATH "\$ENV{GITHUB_WORKSPACE}/../build" CTEST_BINARY_DIRECTORY)
set(dashboard_source_name "${GITHUB_REPOSITORY}")
if((ENV{GITHUB_REF_NAME} MATCHES "master" OR ENV{GITHUB_REF_NAME} MATCHES "main"))
set(branch "-master")
set(dashboard_model "Continuous")
else()
set(branch "-${GITHUB_REF}")
set(dashboard_model "Experimental")
endif()
set(CTEST_BUILD_NAME "${GITHUB_REPOSITORY}-${operating_system}-\${branch}")
set(CTEST_UPDATE_VERSION_ONLY 1)
set(CTEST_TEST_ARGS \${CTEST_TEST_ARGS} PARALLEL_LEVEL \${PARALLEL_LEVEL})
set(CTEST_BUILD_CONFIGURATION "Release")
set(CTEST_CMAKE_GENERATOR "Ninja")
set(CTEST_CUSTOM_WARNING_EXCEPTION
\${CTEST_CUSTOM_WARNING_EXCEPTION}
# macOS Azure VM Warning
"ld: warning: text-based stub file"
${{ inputs.warnings-to-ignore }}
)
set(dashboard_no_clean 1)
set(ENV{CC} ${{ matrix.c-compiler }})
set(ENV{CXX} ${{ matrix.cxx-compiler }})
if(WIN32)
set(ENV{PATH} "\${CTEST_DASHBOARD_ROOT}/ITK-build/bin;\$ENV{PATH}")
endif()
set(dashboard_cache "
ITK_DIR:PATH=\${CTEST_DASHBOARD_ROOT}/ITK-build
BUILD_TESTING:BOOL=ON
${{ inputs.cmake-options }}
")
string(TIMESTAMP build_date "%Y-%m-%d")
message("CDash Build Identifier: \${build_date} \${CTEST_BUILD_NAME}")
message("CTEST_SITE = \${CTEST_SITE}")
include(\${CTEST_SCRIPT_DIRECTORY}/itk_common.cmake)
EOF
cat dashboard.cmake
- name: Build and test
if: matrix.os != 'windows-2022'
run: |
ctest --output-on-failure -j 2 -VV -S dashboard.cmake ${{ inputs.ctest-options }}
- name: Build and test
if: matrix.os == 'windows-2022'
shell: pwsh
run: |
& "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Launch-VsDevShell.ps1" -Arch amd64 -SkipAutomaticLocation
ctest --output-on-failure -j 2 -VV -S dashboard.cmake ${{ inputs.ctest-options }}