Release #39
Workflow file for this run
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: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
binary_release: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: windows | |
os: windows-2019 | |
- name: macos-xcode-universal | |
os: macos-11 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
if: ${{ contains(matrix.name, 'xcode') }} | |
with: | |
xcode-version: latest-stable | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Source release | |
shell: bash | |
working-directory: ../ | |
run: | | |
cmake -P bmx/release/source_release.cmake | |
- name: Win64 binary release | |
if: ${{ contains(matrix.name, 'windows') }} | |
shell: bash | |
working-directory: ../ | |
run: | | |
mkdir binary_release | |
cd binary_release | |
unzip -q ../source_release/bmx-*.zip | |
cd bmx-* | |
cmake -P release/win64_binary_release.cmake | |
- name: MacOS Universal binary release | |
if: ${{ contains(matrix.os, 'macos') }} | |
shell: bash | |
working-directory: ../ | |
run: | | |
mkdir binary_release | |
cd binary_release | |
unzip -q ../source_release/bmx-*.zip | |
cd bmx-* | |
cmake -P release/macos_universal_binary_release.cmake | |
# actions/upload-artifact doesn't allow . and .. in paths | |
- name: Move artefacts into working directory | |
shell: bash | |
run: | | |
mv ../source_release . | |
mv ../binary_release/bmx-*/out/package ./binary_release | |
- name: Upload source release | |
if: ${{ contains(matrix.name, 'windows') }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: source-release | |
path: | | |
source_release/*.zip | |
source_release/*.tar.gz | |
- name: Upload binary release | |
uses: actions/upload-artifact@v3 | |
with: | |
name: binary-release-${{ matrix.name }} | |
path: | | |
binary_release/*.zip |