@@ -229,12 +229,7 @@ jobs:
229
229
id : publish-ctest-msi-binary
230
230
run : |
231
231
mkdir "${{ runner.workspace }}/buildmsi"
232
- mkdir "${{ runner.workspace }}/buildmsi/hdf5_plugins"
233
- Copy-Item -Path ${{ runner.workspace }}/hdf5_plugins/${{ steps.set-file-base.outputs.SOURCE_BASE }}/COPYING -Destination ${{ runner.workspace }}/buildmsi/hdf5_plugins/
234
- Copy-Item -Path ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-MSVC/README.txt -Destination ${{ runner.workspace }}/buildmsi/hdf5_plugins/
235
- Copy-Item -Path ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-MSVC/* -Destination ${{ runner.workspace }}/buildmsi/hdf5_plugins/ -Include *.msi
236
- cd "${{ runner.workspace }}/buildmsi"
237
- 7z a -tzip ${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.msi.zip hdf5_plugins
232
+ Copy-Item -Path ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-MSVC/* -Destination ${{ runner.workspace }}/buildmsi/${{ steps.set-file-base.outputs.FILE_BASE }}-win-vs2022_cl.msi -Include *.msi
238
233
shell : pwsh
239
234
240
235
- name : List files in the space (Windows)
@@ -362,24 +357,14 @@ jobs:
362
357
id : publish-ctest-deb-binary
363
358
run : |
364
359
mkdir "${{ runner.workspace }}/builddeb"
365
- mkdir "${{ runner.workspace }}/builddeb/hdf5_plugins"
366
- cp ${{ runner.workspace }}/hdf5_plugins/${{ steps.set-file-base.outputs.SOURCE_BASE }}/COPYING ${{ runner.workspace }}/builddeb/hdf5_plugins
367
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/README.txt ${{ runner.workspace }}/builddeb/hdf5_plugins
368
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/*.deb ${{ runner.workspace }}/builddeb/hdf5_plugins
369
- cd "${{ runner.workspace }}/builddeb"
370
- tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.deb.tar.gz hdf5_plugins
360
+ cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/*.deb ${{ runner.workspace }}/builddeb/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.deb
371
361
shell : bash
372
362
373
363
- name : Publish rpm binary (Linux)
374
364
id : publish-ctest-rpm-binary
375
365
run : |
376
366
mkdir "${{ runner.workspace }}/buildrpm"
377
- mkdir "${{ runner.workspace }}/buildrpm/hdf5_plugins"
378
- cp ${{ runner.workspace }}/hdf5_plugins/${{ steps.set-file-base.outputs.SOURCE_BASE }}/COPYING ${{ runner.workspace }}/buildrpm/hdf5_plugins
379
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/README.txt ${{ runner.workspace }}/buildrpm/hdf5_plugins
380
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/*.rpm ${{ runner.workspace }}/buildrpm/hdf5_plugins
381
- cd "${{ runner.workspace }}/buildrpm"
382
- tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.rpm.tar.gz hdf5_plugins
367
+ cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-GNUC/*.rpm ${{ runner.workspace }}/buildrpm/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.rpm
383
368
shell : bash
384
369
385
370
- name : List files in the space (Linux)
@@ -399,14 +384,14 @@ jobs:
399
384
uses : actions/upload-artifact@v4
400
385
with :
401
386
name : deb-ubuntu-2204_gcc-binary
402
- path : ${{ runner.workspace }}/builddeb/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.deb.tar.gz
387
+ path : ${{ runner.workspace }}/builddeb/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.deb
403
388
if-no-files-found : error # 'warn' or 'ignore' are also available, defaults to `warn`
404
389
405
390
- name : Save published binary rpm (Linux)
406
391
uses : actions/upload-artifact@v4
407
392
with :
408
393
name : rpm-ubuntu-2204_gcc-binary
409
- path : ${{ runner.workspace }}/buildrpm/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.rpm.tar.gz
394
+ path : ${{ runner.workspace }}/buildrpm/${{ steps.set-file-base.outputs.FILE_BASE }}-ubuntu-2204_gcc.rpm
410
395
if-no-files-found : error # 'warn' or 'ignore' are also available, defaults to `warn`
411
396
412
397
build_and_test_mac_latest :
@@ -622,12 +607,7 @@ jobs:
622
607
id : publish-ctest-dmg-binary
623
608
run : |
624
609
mkdir "${{ runner.workspace }}/builddmg"
625
- mkdir "${{ runner.workspace }}/builddmg/hdf5_plugins"
626
- cp ${{ runner.workspace }}/hdf5_plugins/${{ steps.set-file-base.outputs.SOURCE_BASE }}/COPYING ${{ runner.workspace }}/builddmg/hdf5_plugins
627
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-macos-Clang/README.txt ${{ runner.workspace }}/builddmg/hdf5_plugins
628
- cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-macos-Clang/*.dmg ${{ runner.workspace }}/builddmg/hdf5_plugins
629
- cd "${{ runner.workspace }}/builddmg"
630
- tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.dmg.tar.gz hdf5_plugins
610
+ cp ${{ runner.workspace }}/hdf5_plugins/build/${{ inputs.preset_name }}-macos-Clang/*.dmg ${{ runner.workspace }}/builddmg/${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.dmg
631
611
shell : bash
632
612
633
613
- name : List files in the space (MacOS_latest)
@@ -647,5 +627,5 @@ jobs:
647
627
uses : actions/upload-artifact@v4
648
628
with :
649
629
name : tgz-macos14_clang-dmg-binary
650
- path : ${{ runner.workspace }}/builddmg/${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.dmg.tar.gz
630
+ path : ${{ runner.workspace }}/builddmg/${{ steps.set-file-base.outputs.FILE_BASE }}-macos14_clang.dmg
651
631
if-no-files-found : error # 'warn' or 'ignore' are also available, defaults to `warn`
0 commit comments