mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
rive-ios additions
This commit is contained in:
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
@@ -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
|
||||
|
||||
25
.github/workflows/tests.yml
vendored
25
.github/workflows/tests.yml
vendored
@@ -1,9 +1,10 @@
|
||||
name: Run Rive tests
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build-skia:
|
||||
@@ -58,6 +59,7 @@ jobs:
|
||||
with:
|
||||
token: ${{ secrets.PAT_GITHUB }}
|
||||
submodules: true
|
||||
|
||||
- name: Installing pre-requisites
|
||||
run: |
|
||||
set -x
|
||||
@@ -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
|
||||
|
||||
1
.rive_renderer
Normal file
1
.rive_renderer
Normal file
@@ -0,0 +1 @@
|
||||
1b5319960e3fe85e06535ce447c50665ed1ee764
|
||||
Reference in New Issue
Block a user