mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
Diffs= 59d5d4d658 chore: flush rive runtime change (#9428) f2968887ec Add silvers without lfs (#9425) eabc82a4c2 chore: temporarily remove silvers (#9424) 6cce6709cb refactor(vulkan): Lift lifecycle management (#9410) 7f5e51f4b4 refactor(renderer): Send map sizes to unmap functions as well (#9407) 43d6ac25e6 Metal fiddle context assert fix (#9393) Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com> Co-authored-by: Jonathon Copeland <jcopela4@gmail.com> Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com>
82 lines
1.8 KiB
YAML
82 lines
1.8 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
platform: [linux]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install
|
|
run: |
|
|
wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz
|
|
tar -xf premake-5.0.0-beta2-linux.tar.gz
|
|
sudo chmod a+x premake5
|
|
sudo mv premake5 /usr/local/bin
|
|
|
|
- name: Build
|
|
run: |
|
|
./build.sh clean
|
|
./build.sh
|
|
./build.sh release
|
|
|
|
- name: Tests
|
|
run: |
|
|
cd tests/unit_tests
|
|
./test.sh
|
|
|
|
build-windows:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Tests
|
|
run: |
|
|
cd tests/unit_tests
|
|
./test.sh
|
|
|
|
build-macos:
|
|
runs-on: macOS-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
platform: [macOS]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install
|
|
run: |
|
|
wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-macosx.tar.gz
|
|
tar -xf premake-5.0.0-beta2-macosx.tar.gz
|
|
sudo chmod a+x premake5
|
|
sudo mv premake5 /usr/local/bin
|
|
|
|
- name: Build
|
|
run: |
|
|
./build.sh
|
|
./build.sh release
|
|
|
|
- name: Build glfw
|
|
working-directory: skia/dependencies/
|
|
run: ./make_glfw.sh
|
|
|
|
- name: Tests
|
|
if: matrix.platform == 'macOS'
|
|
run: |
|
|
echo Testing for ${{matrix.platform}}
|
|
cd tests/unit_tests
|
|
./test.sh
|
|
|
|
- name: Tess Tests
|
|
if: matrix.platform == 'macOS'
|
|
run: |
|
|
echo Testing for ${{matrix.platform}}
|
|
cd tess/build/macosx
|
|
./build_tess.sh test
|