Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add prefab and maven publish support #185

Merged
merged 7 commits into from
Nov 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debug
Kudo committed Nov 26, 2024
commit bbdf4c8d21356a474d275d262cfca20004033743
10 changes: 9 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -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
@@ -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
15 changes: 8 additions & 7 deletions scripts/compile/all.sh
Original file line number Diff line number Diff line change
@@ -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