Create explicit tarballs to avoid jumbling files between builds. #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build libraries | |
on: | |
push: | |
create: | |
tags: | |
- '*' | |
jobs: | |
build_macosx_x86_64: | |
name: Build MacOSX (x86_64) | |
runs-on: macOS-11 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up CMake | |
uses: lukka/get-cmake@latest | |
- name: Run the build | |
run: | | |
git config --global --add safe.directory $(pwd) | |
./build_macosx.sh "x86_64" | |
tar -czf macosx_x86_64.tar.gz installed/ | |
- name: Upload tarballs | |
uses: actions/upload-artifact@v3 | |
with: | |
path: "*.tar.gz" | |
build_windows_x86_64: | |
name: Build Windows (x86_64) | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run the build | |
run: | | |
git config --global --add safe.directory $(pwd) | |
./build_windows.sh | |
tar -czf windows_x86_64.tar.gz installed/ | |
shell: bash | |
- name: Upload tarballs | |
uses: actions/upload-artifact@v3 | |
with: | |
path: "*.tar.gz" | |
publish: | |
name: Publish libraries | |
needs: [build_macosx_x86_64, build_windows_x86_64] | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download macosx (x86_64) artifact | |
uses: actions/download-artifact@v3 | |
with: | |
path: dump | |
- name: List artifacts | |
run: ls -l | |
working-directory: dump | |
- name: Publish release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: "HDF5 binaries (1.12.2)" | |
files: dump/* |