Skip to content

Commit bbdf4c8

Browse files
committed
debug
1 parent 5fc6dee commit bbdf4c8

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

.github/workflows/build_and_test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,15 @@ jobs:
9494
name: archive
9595
path: archive
9696

97+
- name: Extract archive
98+
run: |
99+
mv archive/dist dist
100+
mv archive/dist.unstripped dist.unstripped
101+
rmdir archive
102+
find dist
103+
find dist.unstripped
104+
shell: bash
105+
97106
- name: 🍺 Install Maestro
98107
run: |
99108
curl -Ls "https://get.maestro.mobile.dev" | bash
@@ -118,7 +127,6 @@ jobs:
118127
target: google_apis
119128
working-directory: test
120129
script: |
121-
mv ../archive/dist ../dist
122130
npx expo run:android --variant release --no-bundler
123131
adb logcat -c
124132
set +e

scripts/compile/all.sh

+8-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ compile_arch() {
1515
}
1616

1717
compile() {
18-
for arch in arm x86
19-
do
20-
export ANDROID_API=$ANDROID_API_FOR_ABI_32
21-
export JSC_ARCH=$arch
22-
compile_arch
23-
done
18+
# for arch in arm x86
19+
# do
20+
# export ANDROID_API=$ANDROID_API_FOR_ABI_32
21+
# export JSC_ARCH=$arch
22+
# compile_arch
23+
# done
2424

25-
for arch in arm64 x86_64
25+
# for arch in arm64 x86_64
26+
for arch in x86_64
2627
do
2728
export ANDROID_API=$ANDROID_API_FOR_ABI_64
2829
export JSC_ARCH=$arch

0 commit comments

Comments
 (0)