-
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 15b5daf
Showing
6 changed files
with
129 additions
and
93 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
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,36 +10,56 @@ on: | |
|
||
jobs: | ||
mocha-android: | ||
runs-on: macos-12 | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup Docker Colima 1 | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker1 | ||
continue-on-error: true | ||
- name: Free Disk Space | ||
uses: jlumbroso/free-disk-space@main | ||
with: | ||
lima: v0.18.0 | ||
colima: v0.5.6 | ||
|
||
- name: Setup Docker Colima 2 | ||
if: steps.docker1.outcome != 'success' | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker2 | ||
continue-on-error: true | ||
# this might remove tools that are actually needed, | ||
# if set to "true" but frees about 6 GB | ||
tool-cache: false | ||
android: false | ||
dotnet: true | ||
haskell: true | ||
large-packages: true | ||
docker-images: true | ||
swap-storage: true | ||
|
||
- name: yarn and gradle caches in /mnt | ||
run: | | ||
rm -rf ~/.yarn | ||
rm -rf ~/.gradle | ||
sudo mkdir -p /mnt/.yarn | ||
sudo mkdir -p /mnt/.gradle | ||
sudo chown -R runner /mnt/.yarn | ||
sudo chown -R runner /mnt/.gradle | ||
ln -s /mnt/.yarn /home/runner/ | ||
ln -s /mnt/.gradle /home/runner/ | ||
- name: Create artifacts directory on /mnt | ||
run: | | ||
sudo mkdir -p /mnt/artifacts | ||
sudo chown -R runner /mnt/artifacts | ||
- name: Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
lima: v0.18.0 | ||
colima: v0.5.6 | ||
node-version: 20 | ||
|
||
- name: Setup Docker Default | ||
if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success' | ||
uses: docker-practice/[email protected] | ||
timeout-minutes: 30 | ||
- name: Use yarn caches | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.yarn | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn- | ||
- name: Run regtest setup | ||
working-directory: example/docker | ||
|
@@ -53,24 +73,9 @@ jobs: | |
timeout-minutes: 2 | ||
run: while ! nc -z '127.0.0.1' 60001; do sleep 1; done | ||
|
||
- name: Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
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 | ||
|
@@ -84,26 +89,15 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
# - name: Cache node modules | ||
# uses: actions/cache@v3 | ||
# id: cache-nm | ||
# with: | ||
# path: node_modules | ||
# key: node-modules-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: Install node_modules | ||
working-directory: example | ||
run: yarn install && yarn rn-setup | ||
run: (yarn || yarn) && yarn rn-setup | ||
|
||
- name: Use specific Java version for sdkmanager to work | ||
uses: actions/setup-java@v2 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
# - name: Build | ||
# working-directory: example | ||
# run: npx react-native run-android --no-packager | ||
java-version: '17' | ||
|
||
- name: run tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
|
@@ -117,8 +111,8 @@ jobs: | |
script: | | ||
../.github/workflows/mocha-anrdoid.sh | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: ldk-data | ||
path: example/artifacts/ | ||
path: /mnt/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
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
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
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