Skip to content

Commit 2a756b0

Browse files
authored
Remove "CMake" from CI names, descriptions, etc. (#5813)
These are leftovers from when the CI included Autotools builds. Also changes ctest --> CTest in a few places.
1 parent fcfda62 commit 2a756b0

34 files changed

+311
-312
lines changed

.github/workflows/aocc-cmake.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: hdf5 dev PAR CMake aocc ompi
1+
name: hdf5 dev PAR aocc ompi
22

33
# Triggers the workflow on a call from another workflow
44
on:
@@ -65,7 +65,7 @@ jobs:
6565
make
6666
make install
6767
68-
- name: CMake Configure
68+
- name: Configure
6969
shell: bash
7070
run: |
7171
export LD_LIBRARY_PATH=/home/runner/work/hdf5/hdf5/aocc-compiler-${{ env.AOCCVERDOT }}/lib:/home/runner/work/hdf5/hdf5/openmpi-${{ env.MPIVERDOT }}-install/lib:/usr/local/lib
@@ -88,19 +88,19 @@ jobs:
8888
$GITHUB_WORKSPACE
8989
#cat src/libhdf5.settings
9090
91-
- name: CMake Build
91+
- name: Build
9292
shell: bash
9393
run: |
9494
cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
9595
working-directory: ${{ runner.workspace }}/build
9696

97-
- name: CMake Run Tests
97+
- name: Run Tests
9898
shell: bash
9999
run: |
100100
ctest . -E MPI_TEST --parallel 2 -C ${{ inputs.build_mode }} -V
101101
working-directory: ${{ runner.workspace }}/build
102102

103-
- name: CMake Run Parallel Tests
103+
- name: Run Parallel Tests
104104
shell: bash
105105
run: |
106106
ctest . -R MPI_TEST -E "_by_chunk|_by_pattern" -C ${{ inputs.build_mode }} -V

.github/workflows/arm-main-cmake.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: hdf5 dev CMake CI
1+
name: hdf5 dev CI
22

33
# Triggers the workflow on a call from another workflow
44
on:
@@ -62,8 +62,8 @@ jobs:
6262
- name: Get Sources
6363
uses: actions/[email protected]
6464

65-
# CMAKE CONFIGURE
66-
- name: CMake Configure
65+
# CONFIGURE
66+
- name: Configure
6767
run: |
6868
mkdir "${{ runner.workspace }}/build"
6969
cd "${{ runner.workspace }}/build"
@@ -84,7 +84,7 @@ jobs:
8484
shell: bash
8585
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent != 'CC'}}
8686

87-
- name: CMake Configure (Thread-Safe)
87+
- name: Configure (Thread-Safe)
8888
run: |
8989
mkdir "${{ runner.workspace }}/build"
9090
cd "${{ runner.workspace }}/build"
@@ -108,7 +108,7 @@ jobs:
108108
shell: bash
109109
if: ${{ inputs.thread_safety == 'TS' && inputs.concurrent != 'CC'}}
110110

111-
- name: CMake Configure (Concurrency)
111+
- name: Configure (Concurrency)
112112
run: |
113113
mkdir "${{ runner.workspace }}/build"
114114
cd "${{ runner.workspace }}/build"
@@ -132,24 +132,24 @@ jobs:
132132
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent == 'CC'}}
133133

134134
# BUILD
135-
- name: CMake Build
135+
- name: Build
136136
run: cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
137137
working-directory: ${{ runner.workspace }}/build
138138

139139
# RUN TESTS
140-
- name: CMake Run Tests
140+
- name: Run Tests
141141
run: ctest . --parallel 2 -C ${{ inputs.build_mode }} -V
142142
working-directory: ${{ runner.workspace }}/build
143143

144-
- name: CMake Run Package
144+
- name: Run Package
145145
run: cpack -C ${{ inputs.build_mode }} -V
146146
working-directory: ${{ runner.workspace }}/build
147147

148148
- name: List files in the space
149149
run: |
150150
ls -l ${{ runner.workspace }}/build
151151
152-
# Save files created by ctest script
152+
# Save files created by CTest script
153153
- name: Save published binary (Windows)
154154
uses: actions/upload-artifact@v4
155155
with:
@@ -162,7 +162,7 @@ jobs:
162162
name: "Ubuntu gcc-${{ inputs.build_mode }}-${{ inputs.thread_safety }}-${{ inputs.concurrent }}"
163163
runs-on: ubuntu-24.04-arm
164164
steps:
165-
- name: Install CMake Dependencies (Linux)
165+
- name: Install Dependencies (Linux)
166166
run: |
167167
sudo apt-get update
168168
sudo apt-get install ninja-build graphviz
@@ -177,8 +177,8 @@ jobs:
177177
- name: Get Sources
178178
uses: actions/[email protected]
179179

180-
# CMAKE CONFIGURE
181-
- name: CMake Configure
180+
# CONFIGURE
181+
- name: Configure
182182
run: |
183183
mkdir "${{ runner.workspace }}/build"
184184
cd "${{ runner.workspace }}/build"
@@ -198,7 +198,7 @@ jobs:
198198
shell: bash
199199
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent != 'CC'}}
200200

201-
- name: CMake Configure (Thread-Safe)
201+
- name: Configure (Thread-Safe)
202202
run: |
203203
mkdir "${{ runner.workspace }}/build"
204204
cd "${{ runner.workspace }}/build"
@@ -222,7 +222,7 @@ jobs:
222222
shell: bash
223223
if: ${{ inputs.thread_safety == 'TS' && inputs.concurrent != 'CC'}}
224224

225-
- name: CMake Configure (Concurrency)
225+
- name: Configure (Concurrency)
226226
run: |
227227
mkdir "${{ runner.workspace }}/build"
228228
cd "${{ runner.workspace }}/build"
@@ -244,16 +244,16 @@ jobs:
244244
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent == 'CC'}}
245245

246246
# BUILD
247-
- name: CMake Build
247+
- name: Build
248248
run: cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
249249
working-directory: ${{ runner.workspace }}/build
250250

251251
# RUN TESTS
252-
- name: CMake Run Tests
252+
- name: Run Tests
253253
run: ctest . --parallel 2 -C ${{ inputs.build_mode }} -V
254254
working-directory: ${{ runner.workspace }}/build
255255

256-
- name: CMake Run Package
256+
- name: Run Package
257257
run: cpack -C ${{ inputs.build_mode }} -V
258258
working-directory: ${{ runner.workspace }}/build
259259

@@ -297,8 +297,8 @@ jobs:
297297
- name: Get Sources
298298
uses: actions/[email protected]
299299

300-
# CMAKE CONFIGURE
301-
- name: CMake Configure
300+
# CONFIGURE
301+
- name: Configure
302302
run: |
303303
mkdir "${{ runner.workspace }}/build"
304304
cd "${{ runner.workspace }}/build"
@@ -322,7 +322,7 @@ jobs:
322322
shell: bash
323323
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent != 'CC'}}
324324

325-
- name: CMake Configure (Thread-Safe)
325+
- name: Configure (Thread-Safe)
326326
run: |
327327
mkdir "${{ runner.workspace }}/build"
328328
cd "${{ runner.workspace }}/build"
@@ -347,7 +347,7 @@ jobs:
347347
shell: bash
348348
if: ${{ inputs.thread_safety == 'TS' && inputs.concurrent != 'CC'}}
349349

350-
- name: CMake Configure (Concurrency)
350+
- name: Configure (Concurrency)
351351
run: |
352352
mkdir "${{ runner.workspace }}/build"
353353
cd "${{ runner.workspace }}/build"
@@ -370,16 +370,16 @@ jobs:
370370
if: ${{ inputs.thread_safety != 'TS' && inputs.concurrent == 'CC'}}
371371

372372
# BUILD
373-
- name: CMake Build
373+
- name: Build
374374
run: cmake --build . --parallel 3 --config ${{ inputs.build_mode }}
375375
working-directory: ${{ runner.workspace }}/build
376376

377377
# RUN TESTS
378-
- name: CMake Run Tests
378+
- name: Run Tests
379379
run: ctest . --parallel 2 -C ${{ inputs.build_mode }} -V
380380
working-directory: ${{ runner.workspace }}/build
381381

382-
- name: CMake Run Package
382+
- name: Run Package
383383
run: cpack -C ${{ inputs.build_mode }} -V
384384
working-directory: ${{ runner.workspace }}/build
385385

.github/workflows/cmake-analysis.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: hdf5 dev ctest analysis runs
1+
name: hdf5 dev CTest analysis runs
22

33
# Triggers the workflow on a call from another workflow
44
on:
@@ -29,7 +29,7 @@ jobs:
2929
name: "Ubuntu GCC Coverage"
3030
runs-on: ubuntu-22.04
3131
steps:
32-
- name: Install CMake Dependencies (Linux_coverage)
32+
- name: Install Dependencies (Linux_coverage)
3333
run: |
3434
sudo apt update
3535
sudo apt-get install ninja-build doxygen graphviz curl build-essential
@@ -104,14 +104,14 @@ jobs:
104104
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_PACKAGE_EXTLIBS:BOOL=OFF")
105105
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF5_NO_PACKAGES:BOOL=ON")
106106
107-
- name: Run ctest (Linux_coverage)
107+
- name: Run CTest (Linux_coverage)
108108
run: |
109109
cd "${{ runner.workspace }}/hdf5"
110110
ctest -S HDF5config.cmake,CTEST_SITE_EXT=${{ github.event.repository.full_name }}_COV,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=Unix,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Debug -VV -O hdf5.log
111111
shell: bash
112112
continue-on-error: true
113113

114-
# Save log files created by ctest script
114+
# Save log files created by CTest script
115115
- name: Save log (Linux_coverage)
116116
uses: actions/upload-artifact@v4
117117
with:
@@ -125,7 +125,7 @@ jobs:
125125
name: "Ubuntu Clang LeakSanitizer"
126126
runs-on: ubuntu-22.04
127127
steps:
128-
- name: Install CMake Dependencies (Linux_Leak)
128+
- name: Install Dependencies (Linux_Leak)
129129
run: |
130130
sudo apt update
131131
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5
@@ -205,14 +205,14 @@ jobs:
205205
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF")
206206
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF")
207207
208-
- name: Run ctest (Linux_Leak)
208+
- name: Run CTest (Linux_Leak)
209209
run: |
210210
cd "${{ runner.workspace }}/hdf5"
211211
ctest -S HDF5config.cmake,CTEST_SITE_EXT=${{ github.event.repository.full_name }}-LEAK,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=Unix,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Debug -VV -O hdf5.log
212212
shell: bash
213213
continue-on-error: true
214214

215-
# Save log files created by ctest script
215+
# Save log files created by CTest script
216216
- name: Save log (Linux_Leak)
217217
uses: actions/upload-artifact@v4
218218
with:
@@ -226,7 +226,7 @@ jobs:
226226
name: "Ubuntu Clang AddressSanitizer"
227227
runs-on: ubuntu-22.04
228228
steps:
229-
- name: Install CMake Dependencies (Linux_Address)
229+
- name: Install Dependencies (Linux_Address)
230230
run: |
231231
sudo apt update
232232
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5
@@ -306,14 +306,14 @@ jobs:
306306
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF")
307307
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF")
308308
309-
- name: Run ctest (Linux_Address)
309+
- name: Run CTest (Linux_Address)
310310
run: |
311311
cd "${{ runner.workspace }}/hdf5"
312312
ctest -S HDF5config.cmake,CTEST_SITE_EXT=${{ github.event.repository.full_name }}-ADDR,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=Unix,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Debug -VV -O hdf5.log
313313
shell: bash
314314
continue-on-error: true
315315

316-
# Save log files created by ctest script
316+
# Save log files created by CTest script
317317
- name: Save log (Linux_Address)
318318
uses: actions/upload-artifact@v4
319319
with:
@@ -327,7 +327,7 @@ jobs:
327327
name: "Ubuntu Clang UndefinedBehaviorSanitizer"
328328
runs-on: ubuntu-22.04
329329
steps:
330-
- name: Install CMake Dependencies (Linux_UndefinedBehavior)
330+
- name: Install Dependencies (Linux_UndefinedBehavior)
331331
run: |
332332
sudo apt update
333333
sudo apt-get install ninja-build doxygen graphviz curl libtinfo5
@@ -407,14 +407,14 @@ jobs:
407407
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DZLIB_USE_LOCALCONTENT:BOOL=OFF")
408408
set (ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DPLUGIN_USE_LOCALCONTENT:BOOL=OFF")
409409
410-
- name: Run ctest (Linux_UndefinedBehavior)
410+
- name: Run CTest (Linux_UndefinedBehavior)
411411
run: |
412412
cd "${{ runner.workspace }}/hdf5"
413413
ctest -S HDF5config.cmake,CTEST_SITE_EXT=${{ github.event.repository.full_name }}-UNDEF,LOCAL_SUBMIT=ON,NINJA=TRUE,BUILD_GENERATOR=Unix,CTEST_SOURCE_NAME=${{ steps.set-file-base.outputs.SOURCE_BASE }} -C Debug -VV -O hdf5.log
414414
shell: bash
415415
continue-on-error: true
416416

417-
# Save log files created by ctest script
417+
# Save log files created by CTest script
418418
- name: Save log (Linux_UndefinedBehavior)
419419
uses: actions/upload-artifact@v4
420420
with:

.github/workflows/cmake-bintest.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
test_binary_win:
17-
# Windows w/ MSVC + CMake
17+
# Windows w/ MSVC
1818
#
1919
name: "Windows MSVC Binary Test"
2020
runs-on: windows-latest
@@ -80,7 +80,7 @@ jobs:
8080
Get-ChildItem -Path ${{ runner.workspace }}
8181
shell: pwsh
8282

83-
- name: Run ctest (Windows)
83+
- name: Run CTest (Windows)
8484
env:
8585
HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
8686
HDF5_PLUGIN_PATH: ${{ steps.set-hdf5lib-name.outputs.HDF5_PLUGIN_PATH }}
@@ -90,12 +90,12 @@ jobs:
9090
shell: bash
9191

9292
test_binary_linux:
93-
# Linux (Ubuntu) w/ gcc + CMake
93+
# Linux (Ubuntu) w/ gcc
9494
#
9595
name: "Ubuntu gcc Binary Test"
9696
runs-on: ubuntu-latest
9797
steps:
98-
- name: Install CMake Dependencies (Linux)
98+
- name: Install Dependencies (Linux)
9999
run: |
100100
sudo apt-get update
101101
sudo apt-get install ninja-build doxygen graphviz
@@ -134,7 +134,7 @@ jobs:
134134
ls -l ${{ github.workspace }}
135135
ls ${{ runner.workspace }}
136136
137-
- name: Run ctest (Linux)
137+
- name: Run CTest (Linux)
138138
env:
139139
HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
140140
HDF5_PLUGIN_PATH: ${{ steps.set-hdf5lib-name.outputs.HDF5_PLUGIN_PATH }}
@@ -144,7 +144,7 @@ jobs:
144144
shell: bash
145145

146146
test_binary_mac_latest:
147-
# MacOS w/ Clang + CMake
147+
# MacOS w/ Clang
148148
#
149149
name: "MacOS Clang Binary Test"
150150
runs-on: macos-latest
@@ -194,7 +194,7 @@ jobs:
194194
compiler: gcc
195195
version: 14
196196

197-
- name: Run ctest (MacOS_latest)
197+
- name: Run CTest (MacOS_latest)
198198
id: run-ctest
199199
env:
200200
HDF5_ROOT: ${{ steps.set-hdf5lib-name.outputs.HDF5_ROOT }}
@@ -205,12 +205,12 @@ jobs:
205205
shell: bash
206206

207207
test_h5cc_linux:
208-
# Linux (Ubuntu) w/ gcc + CMake
208+
# Linux (Ubuntu) w/ gcc
209209
#
210210
name: "Ubuntu h5cc Binary Test"
211211
runs-on: ubuntu-latest
212212
steps:
213-
- name: Install CMake Dependencies (Linux)
213+
- name: Install Dependencies (Linux)
214214
run: |
215215
sudo apt-get update
216216
sudo apt-get install ninja-build doxygen graphviz

0 commit comments

Comments
 (0)