Skip to content

Commit

Permalink
rive-ios additions
Browse files Browse the repository at this point in the history
  • Loading branch information
csmartdalton committed Sep 8, 2023
1 parent 1dbf443 commit 2516b6c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 43 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,20 @@ jobs:
with:
submodules: true
token: ${{ secrets.PAT_GITHUB }}

- name: Get Renderer ref
id: renderer-ref
run: echo "REF_VALUE=$(cat .rive_renderer)" >> $GITHUB_OUTPUT

- name: Checkout Rive Renderer Repo
uses: actions/checkout@v3
with:
submodules: true
repository: ${{ secrets.RIVE_RENDERER_REPO }}
token: ${{ secrets.PAT_GITHUB }}
path: ./submodules/pls
ref: ${{ steps.renderer-ref.outputs.REF_VALUE }}

- name: Installing pre-requisites
run: |
set -x
Expand Down
66 changes: 23 additions & 43 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,63 +1,35 @@
name: Run Rive tests

on:
push:
pull_request:
branches:
- main
push:

jobs:
build-skia:
strategy:
matrix:
arch: ["x86", "x64", "arm", "arm64", "iossim_arm64"]

run_tests:
name: Run Rive tests
runs-on: [self-hosted, macOS, ARM64]
permissions:
id-token: write
contents: read
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-west-2
role-to-assume: ${{ secrets.ACTIONS_ROLE }}
- name: Checkout Code
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
token: ${{ secrets.PAT_GITHUB }}
submodules: true

- name: Update Java
uses: actions/setup-java@v2
with:
distribution: "zulu"
java-version: "16"
- name: Get Renderer ref
id: renderer-ref
run: echo "REF_VALUE=$(cat .rive_renderer)" >> $GITHUB_OUTPUT

- name: Installing pre-requisites
run: |
set -x
# Install some dependencies & premake5
brew install ninja
curl https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-macosx.tar.gz -L -o premake_macosx.tar.gz
tar -xvf premake_macosx.tar.gz 2>/dev/null
rm premake_macosx.tar.gz
mkdir bin
cp premake5 bin/premake5
sudo chmod a+x premake5
sudo mv premake5 /usr/local/bin
- name: Build skia files
run: ./scripts/build.skia.sh -a ${{ matrix.arch }}

run_tests:
name: Run Rive tests
needs: build-skia
runs-on: [self-hosted, macOS, ARM64]
steps:
- name: Checkout
- name: Checkout Rive Renderer Repo
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT_GITHUB }}
submodules: true
repository: ${{ secrets.RIVE_RENDERER_REPO }}
token: ${{ secrets.PAT_GITHUB }}
path: ./submodules/pls
ref: ${{ steps.renderer-ref.outputs.REF_VALUE }}

- name: Installing pre-requisites
run: |
set -x
Expand All @@ -70,7 +42,15 @@ jobs:
mkdir bin
cp premake5 bin/premake5
sudo mv premake5 /usr/local/bin
- name: Build everything WITHOUT Rive Renderer
run: ./scripts/build.sh ios_sim debug

- name: Testing iOS app WITHOUT Rive Renderer
run: ./scripts/test.sh

- name: Build everything (using the cache, we should make an archive of course)
run: ./scripts/build.sh ios_sim debug

- name: Testing iOS app
run: ./scripts/test.sh
1 change: 1 addition & 0 deletions .rive_renderer
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1b5319960e3fe85e06535ce447c50665ed1ee764

0 comments on commit 2516b6c

Please sign in to comment.