-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/npm_and_yarn/example/semver-5.7.2
- Loading branch information
Showing
79 changed files
with
92,422 additions
and
65,754 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 |
---|---|---|
@@ -0,0 +1,118 @@ | ||
name: mocha-android | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'master' | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
mocha-android: | ||
runs-on: macos-12 | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup Docker Colima 1 | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker1 | ||
continue-on-error: true | ||
|
||
- name: Setup Docker Colima 2 | ||
if: steps.docker1.outcome != 'success' | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker2 | ||
continue-on-error: true | ||
|
||
- name: Setup Docker Default | ||
if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success' | ||
uses: docker-practice/[email protected] | ||
timeout-minutes: 30 | ||
|
||
- name: Run regtest setup | ||
working-directory: example/docker | ||
run: | | ||
mkdir lnd | ||
mkdir clightning | ||
chmod 777 lnd clightning | ||
docker-compose up -d | ||
- name: Wait for electrum server | ||
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: 16 | ||
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 | ||
|
||
- name: Build lib | ||
working-directory: lib | ||
run: yarn build | ||
|
||
- name: Use gradle caches | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.gradle/caches | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
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 | ||
|
||
- name: Use specific Java version for sdkmanager to work | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
# - name: Build | ||
# working-directory: example | ||
# run: npx react-native run-android --no-packager | ||
|
||
- name: run tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: 31 | ||
avd-name: Pixel_API_31_AOSP | ||
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -camera-back none -camera-front none -partition-size 2047 | ||
arch: x86_64 | ||
disable-animations: true | ||
working-directory: example | ||
script: | | ||
../.github/workflows/mocha-anrdoid.sh | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: ldk-data | ||
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
adb reverse tcp:8090 tcp:8090 | ||
adb reverse tcp:9090 tcp:9090 | ||
adb reverse tcp:9091 tcp:9091 | ||
adb reverse tcp:9092 tcp:9092 | ||
adb reverse tcp:9735 tcp:9735 | ||
adb reverse tcp:9736 tcp:9736 | ||
adb reverse tcp:9737 tcp:9737 | ||
adb reverse tcp:18080 tcp:18080 | ||
adb reverse tcp:28081 tcp:28081 | ||
adb reverse tcp:60001 tcp:60001 | ||
|
||
set +e | ||
yarn test:mocha:android | ||
EXIT_CODE=$? | ||
set -e | ||
|
||
echo $EXIT_CODE; | ||
if [ $EXIT_CODE -ne 0 ]; then | ||
adb root | ||
sleep 10 | ||
adb pull /data/user/0/com.exmpl/files/ldk/ artifacts/ | ||
fi | ||
|
||
exit $EXIT_CODE |
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 |
---|---|---|
@@ -0,0 +1,126 @@ | ||
name: mocha-ios | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'master' | ||
push: | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
mocha-ios: | ||
runs-on: macos-12 | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup Docker Colima 1 | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker1 | ||
continue-on-error: true | ||
|
||
- name: Setup Docker Colima 2 | ||
if: steps.docker1.outcome != 'success' | ||
uses: douglascamata/setup-docker-macos-action@v1-alpha | ||
id: docker2 | ||
continue-on-error: true | ||
|
||
- name: Setup Docker Default | ||
if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success' | ||
uses: docker-practice/[email protected] | ||
timeout-minutes: 30 | ||
|
||
- name: Run regtest setup | ||
working-directory: example/docker | ||
run: | | ||
mkdir lnd | ||
mkdir clightning | ||
chmod 777 lnd clightning | ||
docker-compose up -d | ||
- name: Wait for electrum server | ||
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: 16 | ||
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 | ||
|
||
- 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 | ||
|
||
- name: Cache Pods | ||
uses: actions/cache@v3 | ||
id: podcache | ||
with: | ||
path: example/ios/Pods | ||
key: pods-${{ hashFiles('**/Podfile.lock') }} | ||
|
||
- name: Install pods | ||
working-directory: example | ||
run: | | ||
gem update cocoapods xcodeproj | ||
cd ios && pod install && cd .. | ||
- name: Install applesimutils | ||
run: | | ||
brew tap wix/brew | ||
brew install applesimutils | ||
- name: Build | ||
working-directory: example | ||
run: npx react-native run-ios --no-packager | ||
|
||
- name: Test iOS app | ||
working-directory: example | ||
run: yarn test:mocha:ios | ||
|
||
- name: Prepare articrafts | ||
if: failure() | ||
run: | | ||
mkdir articrafts | ||
find /Users/runner/Library/Developer/CoreSimulator/Devices/ -path '*Documents/ldk' -exec cp -r "{}" articrafts/ \; | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: ldk-data | ||
path: articrafts |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
.idea/ | ||
**/.DS_Store | ||
example/.watchman* | ||
|
||
# docker | ||
example/docker/lnd/ | ||
example/docker/clightning/ |
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
Oops, something went wrong.