-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing for both android and ios, disabled CI
- Loading branch information
Showing
13 changed files
with
226 additions
and
181 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 |
---|---|---|
@@ -1,2 +1,45 @@ | ||
# TODO: Re-enable this workflow | ||
# Disabled to save on CI credits | ||
name: Android Build & Render Test | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
# TODO: Re-enable once there are more run minutes available | ||
if: false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: 'yarn' | ||
|
||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
|
||
- name: Install Android build tools and platform | ||
run: | | ||
sdkmanager --install "build-tools;33.0.0" "platforms;android-33" "ndk;25.1.8937393" | ||
- name: Install dependencies | ||
run: | | ||
npm install -g yarn | ||
yarn install | ||
- name: Install Maestro | ||
run: | | ||
curl -Ls "https://get.maestro.mobile.dev" | bash | ||
echo "$HOME/.maestro/bin" >> $GITHUB_PATH | ||
- name: Run Android Build and Tests | ||
run: bash tests/test-android.sh |
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 |
---|---|---|
|
@@ -36,3 +36,6 @@ yarn-error.* | |
*.tsbuildinfo | ||
|
||
app-example | ||
|
||
# Assets | ||
assets/test.drift |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
app/src/main/assets/test.drift | ||
|
||
# OSX | ||
# | ||
.DS_Store | ||
|
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
Binary file not shown.
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,5 +1,3 @@ | ||
test.drift | ||
|
||
# OSX | ||
# | ||
.DS_Store | ||
|
Oops, something went wrong.