-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
105e664
commit f9f3827
Showing
2 changed files
with
27 additions
and
76 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,63 +10,36 @@ on: | |
|
||
jobs: | ||
e2e-ios: | ||
runs-on: macos-12 | ||
runs-on: macos-14 | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
node-version: 20 | ||
cache: 'yarn' # cache packages, but not node_modules | ||
cache-dependency-path: 'example/yarn.lock' | ||
|
||
- name: Cache lib node modules | ||
uses: actions/cache@v3 | ||
id: lib-npmcache | ||
with: | ||
path: lib/node_modules | ||
key: node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install lib dependencies | ||
if: steps.lib-npmcache.outputs.cache-hit != 'true' | ||
working-directory: lib | ||
run: yarn install | ||
run: yarn install || yarn install | ||
|
||
- name: Build lib | ||
working-directory: lib | ||
run: yarn build | ||
|
||
- name: Cache app node modules | ||
uses: actions/cache@v3 | ||
id: cache-nm | ||
with: | ||
path: example/node_modules | ||
key: node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Rebuild detox | ||
if: steps.cache-nm.outputs.cache-hit == 'true' | ||
working-directory: example | ||
run: yarn detox clean-framework-cache && yarn detox build-framework-cache | ||
|
||
- name: Install Dependencies | ||
if: steps.cache-nm.outputs.cache-hit != 'true' | ||
working-directory: example | ||
run: yarn install && yarn rn-setup | ||
|
||
# - name: Activate react-native-skia-stup | ||
# run: | | ||
# yarn add @shopify/[email protected] git+ssh://[email protected]/limpbrains/react-native-skia-stub | ||
# patch -p1 < .github/workflows/react-native-skia-stub.patch | ||
run: (yarn || yarn) && yarn rn-setup | ||
|
||
- name: Cache Pods | ||
uses: actions/cache@v3 | ||
id: podcache | ||
uses: actions/cache@v4 | ||
with: | ||
path: example/ios/Pods | ||
key: pods-${{ hashFiles('**/Podfile.lock') }} | ||
|
@@ -75,7 +48,7 @@ jobs: | |
working-directory: example | ||
run: | | ||
gem update cocoapods xcodeproj | ||
cd ios && pod install && cd .. | ||
pod install --project-directory=ios | ||
- name: Install applesimutils | ||
run: | | ||
|
@@ -84,14 +57,14 @@ jobs: | |
- name: Build | ||
working-directory: example | ||
run: yarn e2e:build:ios-release | ||
run: yarn e2e:build:ios-release || yarn e2e:build:ios-release | ||
|
||
- name: Test iOS app | ||
working-directory: example | ||
run: yarn e2e:test:ios-release || yarn e2e:test:ios-release || yarn e2e:test:ios-release | ||
run: yarn e2e:test:ios-release || yarn e2e:test:ios-release | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
- uses: actions/upload-artifact@v4 | ||
# if: failure() | ||
with: | ||
name: e2e-test-videos | ||
path: ./example/artifacts/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,12 @@ on: | |
|
||
jobs: | ||
mocha-ios: | ||
runs-on: macos-12 | ||
runs-on: macos-13 | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
|
@@ -31,15 +31,15 @@ jobs: | |
if: steps.docker1.outcome != 'success' | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker2 | ||
continue-on-error: true | ||
# continue-on-error: true | ||
with: | ||
lima: v0.18.0 | ||
colima: v0.5.6 | ||
|
||
- name: Setup Docker Default | ||
if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success' | ||
uses: docker-practice/[email protected] | ||
timeout-minutes: 30 | ||
# - name: Setup Docker Default | ||
# if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success' | ||
# uses: docker-practice/[email protected] | ||
# timeout-minutes: 30 | ||
|
||
- name: Install backup-server dependencies | ||
working-directory: backup-server | ||
|
@@ -58,48 +58,26 @@ jobs: | |
run: while ! nc -z '127.0.0.1' 60001; do sleep 1; done | ||
|
||
- name: Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
node-version: 20 | ||
cache: 'yarn' # cache packages, but not node_modules | ||
cache-dependency-path: 'example/yarn.lock' | ||
|
||
- name: Cache lib node modules | ||
uses: actions/cache@v3 | ||
id: lib-npmcache | ||
with: | ||
path: lib/node_modules | ||
key: node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install lib dependencies | ||
if: steps.lib-npmcache.outputs.cache-hit != 'true' | ||
working-directory: lib | ||
run: yarn --no-audit --prefer-offline || yarn --no-audit --prefer-offline | ||
run: yarn || yarn | ||
|
||
- name: Build lib | ||
working-directory: lib | ||
run: yarn build | ||
|
||
- name: Cache app node modules | ||
uses: actions/cache@v3 | ||
id: cache-nm | ||
with: | ||
path: example/node_modules | ||
key: node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Rebuild detox | ||
if: steps.cache-nm.outputs.cache-hit == 'true' | ||
working-directory: example | ||
run: yarn detox clean-framework-cache && yarn detox build-framework-cache | ||
|
||
- name: Install Dependencies | ||
if: steps.cache-nm.outputs.cache-hit != 'true' | ||
working-directory: example | ||
run: yarn install --no-audit --prefer-offline && yarn rn-setup | ||
run: (yarn || yarn) && yarn rn-setup | ||
|
||
- name: Cache Pods | ||
uses: actions/cache@v3 | ||
id: podcache | ||
uses: actions/cache@v4 | ||
with: | ||
path: example/ios/Pods | ||
key: pods-${{ hashFiles('**/Podfile.lock') }} | ||
|
@@ -108,7 +86,7 @@ jobs: | |
working-directory: example | ||
run: | | ||
gem update cocoapods xcodeproj | ||
cd ios && pod install && cd .. | ||
pod install --project-directory=ios | ||
- name: Install applesimutils | ||
run: | | ||
|
@@ -124,12 +102,12 @@ jobs: | |
run: yarn test:mocha:ios | ||
|
||
- name: Prepare articrafts | ||
if: failure() | ||
# if: failure() | ||
run: | | ||
mkdir articrafts | ||
find /Users/runner/Library/Developer/CoreSimulator/Devices/ -path '*Documents/ldk' -exec cp -r "{}" articrafts/ \; | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: ldk-data | ||
|