-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a quick and dirty android build workflow (#330)
* add first 2e2 local test using detox * Remove unused import statement * add android e2e workflow * add a quick and dirty android build workflow * clean up * fmt * lint * Update android.yml * Update android.yml * Update android.yml * Update android.yml * Delete e2e-android.yml * ci * fmt * update deps * Create renovate.json * Create dependabot.yml * update e2e test --------- Co-authored-by: First-Terraner <[email protected]>
- Loading branch information
1 parent
36f30f6
commit ec22329
Showing
20 changed files
with
2,534 additions
and
604 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,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" |
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,6 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
], | ||
"forkProcessing": "enabled" | ||
} |
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,170 @@ | ||
name: Build-for-android-production | ||
|
||
on: | ||
push: | ||
branches: [main, dev] | ||
pull_request: | ||
# types: [opened, reopened] | ||
# types: [opened, synchronize, edited, ready_for_review] | ||
|
||
env: | ||
EXPO_NO_TELEMETRY: 1 | ||
SENTRY_DISABLE_AUTO_UPLOAD: true | ||
jobs: | ||
build: | ||
name: build-android-production | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Restore cached Cache | ||
id: cache-restore | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: | | ||
~/**/*android* | ||
~/*android* | ||
~/**/*gradle* | ||
~/*gradle* | ||
**/node_modules | ||
./node_modules | ||
**/android | ||
./android | ||
key: ${{ runner.os }}-android-build | ||
restore-keys: | | ||
${{ runner.os }}-android-build | ||
ci-${{ runner.os }}-android-build | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: "17" | ||
|
||
- uses: expo/expo-github-action@v8 | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
with: | ||
packages: platform-tools platforms;android-34 build-tools;33.0.1 build-tools;34.0.0 ndk;25.1.8937393 cmake;3.22.1 | ||
|
||
- name: Install deps | ||
run: npm ci | ||
|
||
- name: PreBuild Android | ||
run: npx expo prebuild -p android --clean | ||
|
||
- name: make gradlew executable | ||
run: chmod +x ./android/gradlew | ||
|
||
- name: Build android APK | ||
run: | | ||
cd ./android && ./gradlew assembleRelease --no-daemon --stacktrace | ||
find . -type f -name '*.apk' 2>/dev/null | ||
cd ${{ env.GITHUB_WORKSPACE }} | ||
shell: bash | ||
|
||
- name: Save Cache | ||
id: cache-save | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: | | ||
~/**/*android* | ||
~/*android* | ||
~/**/*gradle* | ||
~/*gradle* | ||
**/node_modules | ||
./node_modules | ||
**/android | ||
./android | ||
key: ${{ runner.os }}-android-build | ||
|
||
build-debug: | ||
name: build-android-debug | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Enable KVM | ||
run: | | ||
mkdir -p /etc/udev/rules.d | ||
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | ||
sudo udevadm control --reload-rules | ||
sudo udevadm trigger --name-match=kvm | ||
- name: Restore cached Cache | ||
id: cache-restore | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: | | ||
~/**/*android* | ||
~/*android* | ||
~/**/*gradle* | ||
~/*gradle* | ||
**/node_modules | ||
./node_modules | ||
**/android | ||
./android | ||
key: ${{ runner.os }}-android-build-debug | ||
restore-keys: | | ||
${{ runner.os }}-android-build-debug | ||
ci-${{ runner.os }}-android-build-debug | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: npm | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: "17" | ||
|
||
- uses: expo/expo-github-action@v8 | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
with: | ||
packages: platform-tools platforms;android-34 build-tools;33.0.1 build-tools;34.0.0 ndk;25.1.8937393 cmake;3.22.1 | ||
|
||
- name: Install deps | ||
run: npm ci | ||
|
||
- name: PreBuild Android | ||
run: npx expo prebuild -p android --clean | ||
|
||
- name: make gradlew executable | ||
run: chmod +x ./android/gradlew | ||
|
||
- name: Detox build | ||
run: npm run detox:build:android | ||
|
||
- name: Get device name | ||
id: device-name | ||
run: echo "::set-output name=DEVICE_NAME::$(node -e "console.log(require('./detox.config.js').devices.emulator.device.avdName)")" | ||
|
||
- name: Detox test | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: 33 | ||
arch: x86_64 | ||
avd-name: ${{ steps.device-name.outputs.DEVICE_NAME }} | ||
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | ||
script: npm run detox:test:android:ci | ||
|
||
- name: Save Cache | ||
id: cache-save | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: | | ||
~/**/*android* | ||
~/*android* | ||
~/**/*gradle* | ||
~/*gradle* | ||
**/node_modules | ||
./node_modules | ||
**/android | ||
./android | ||
key: ${{ runner.os }}-android-build-debug |
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
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,57 @@ | ||
/** @type {Detox.DetoxConfig} */ | ||
module.exports = { | ||
logger: { | ||
level: process.env.CI ? 'debug' : undefined | ||
}, | ||
testRunner: { | ||
args: { | ||
$0: 'jest', | ||
config: './test/e2e/jest.config.ts', | ||
_: ['e2e'] | ||
} | ||
}, | ||
artifacts: { | ||
rootDir: '.artifacts', | ||
plugins: { | ||
log: process.env.CI ? 'failing' : undefined, | ||
screenshot: 'failing' | ||
} | ||
}, | ||
apps: { | ||
'ios.release': { | ||
type: 'ios.app', | ||
build: | ||
'xcodebuild -workspace ios/eastestsexample.xcworkspace -scheme eastestsexample -configuration Release -sdk iphonesimulator -arch x86_64 -derivedDataPath ios/build', | ||
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/eastestsexample.app' | ||
}, | ||
'android.release': { | ||
type: 'android.apk', | ||
build: 'cd android && ./gradlew clean :app:assembleRelease :app:assembleAndroidTest -DtestBuildType=release && cd ..', | ||
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk' | ||
}, | ||
}, | ||
devices: { | ||
simulator: { | ||
type: 'ios.simulator', | ||
device: { | ||
type: 'iPhone 14' | ||
} | ||
}, | ||
emulator: { | ||
type: 'android.emulator', | ||
device: { | ||
avdName: 'Pixel_7_Pro_API_34' | ||
} | ||
} | ||
}, | ||
configurations: { | ||
'ios.release': { | ||
device: 'simulator', | ||
app: 'ios.release' | ||
}, | ||
'android.emu.release': { | ||
device: 'emulator', | ||
app: 'android.release' | ||
} | ||
} | ||
} |
Oops, something went wrong.