Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudo committed Nov 26, 2024
1 parent 5fc6dee commit bbdf4c8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@ jobs:
name: archive
path: archive

- name: Extract archive
run: |
mv archive/dist dist
mv archive/dist.unstripped dist.unstripped
rmdir archive
find dist
find dist.unstripped
shell: bash

- name: 🍺 Install Maestro
run: |
curl -Ls "https://get.maestro.mobile.dev" | bash
Expand All @@ -118,7 +127,6 @@ jobs:
target: google_apis
working-directory: test
script: |
mv ../archive/dist ../dist
npx expo run:android --variant release --no-bundler
adb logcat -c
set +e
Expand Down
15 changes: 8 additions & 7 deletions scripts/compile/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ compile_arch() {
}

compile() {
for arch in arm x86
do
export ANDROID_API=$ANDROID_API_FOR_ABI_32
export JSC_ARCH=$arch
compile_arch
done
# for arch in arm x86
# do
# export ANDROID_API=$ANDROID_API_FOR_ABI_32
# export JSC_ARCH=$arch
# compile_arch
# done

for arch in arm64 x86_64
# for arch in arm64 x86_64
for arch in x86_64
do
export ANDROID_API=$ANDROID_API_FOR_ABI_64
export JSC_ARCH=$arch
Expand Down

0 comments on commit bbdf4c8

Please # to comment.