stop fail-fast #31
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 Binaries | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup-cpp | |
with: | |
toolchain: ${{ startsWith(matrix.os, 'windows') && 'MSVC' || 'GCC' }} | |
- name: Build | |
run: ./unit_tests Release | |
# - name: Move Win32 files | |
# if: startsWith(matrix.os, 'windows') | |
# run: | | |
# mkdir -p dist/win-x86 | |
# cp build32/Release/yogacore.dll dist/win-x86/yoga.dll | |
- name: Move Win64 files | |
if: startsWith(matrix.os, 'windows') | |
run: | | |
mkdir -p dist/win-x64 | |
cp build/Release/yogacore.dll dist/win-x64/yoga.dll | |
- name: Move MacOS files | |
if: startsWith(matrix.os, 'macOS') | |
run: | | |
mkdir -p dist/osx | |
cp build/libyogacore.dylib dist/osx/libyoga.dylib | |
- name: Move Ubuntu files | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
mkdir -p dist/linux | |
cp build/libyogacore.so dist/linux/libyoga.so | |
- name: Upload Binaries | |
uses: actions/upload-artifact@v3 | |
if: github.event_name == 'push' | |
with: | |
path: dist/** | |
name: prebuilt_yoga_binaries | |
build-android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-android | |
- name: Build | |
run: | | |
./gradlew :yoga:assembleRelease | |
mkdir -p dist/android | |
cp java/build/outputs/aar/yoga-release.aar dist/android/yoga.aar | |
- name: Upload Binaries | |
uses: actions/upload-artifact@v3 | |
if: github.event_name == 'push' | |
with: | |
path: dist/** | |
name: prebuilt_yoga_binaries | |