Merge branch 'main' into extended_main #35
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' || 'Clang' }} | |
- name: Build | |
run: ./unit_tests Release | |
- name: Move Windows files | |
if: startsWith(matrix.os, 'windows') | |
run: | | |
mkdir -p dist/win-x64 | |
cp tests/build/yoga/yogacore.dll dist/win-x64/yoga.dll | |
cp tests/build32/yoga/yogacore.dll dist/win-x86/yoga.dll | |
- name: Move MacOS files | |
if: startsWith(matrix.os, 'macOS') | |
run: | | |
mkdir -p dist/osx | |
cp tests/build/yoga/libyogacore.dylib dist/osx/libyoga.dylib | |
- name: Move Ubuntu files | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
mkdir -p dist/linux | |
cp tests/build/yoga/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 | |