Skip to content

Commit

Permalink
Checkout and build the Rive Renderer into iOS deployments
Browse files Browse the repository at this point in the history
Diffs=
dce695271 Checkout and build the Rive Renderer into iOS deployments (#5962)

Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
  • Loading branch information
csmartdalton and csmartdalton committed Sep 8, 2023
1 parent 1dbf443 commit b6a88c7
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 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
25 changes: 24 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Run Rive tests

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

jobs:
build-skia:
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:
with:
token: ${{ secrets.PAT_GITHUB }}
submodules: true

- name: Installing pre-requisites
run: |
set -x
Expand All @@ -70,7 +72,28 @@ 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: 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: 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
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ea5593879655ce9be71e18b9b9dd486f29195c92
dce69527198a927073731415d23131e8e9d394d2
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 b6a88c7

Please sign in to comment.