Enhance Android CI workflow with verbose export and build checks
Android / android (push) Failing after 19s
Android / android (push) Failing after 19s
This commit is contained in:
@@ -50,14 +50,40 @@ jobs:
|
|||||||
ls -lh /root/.local/share/godot/export_templates/4.6.stable/
|
ls -lh /root/.local/share/godot/export_templates/4.6.stable/
|
||||||
test -f /root/.local/share/godot/export_templates/4.6.stable/android_release.apk
|
test -f /root/.local/share/godot/export_templates/4.6.stable/android_release.apk
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# - name: Godot export check
|
||||||
|
|
||||||
|
# run: |
|
||||||
|
# godot \
|
||||||
|
# --headless \
|
||||||
|
# --path . \
|
||||||
|
# --export-release "Android" \
|
||||||
|
# /tmp/test.apk
|
||||||
|
|
||||||
|
|
||||||
- name: Godot export check
|
- name: Godot export check
|
||||||
run: |
|
run: |
|
||||||
|
mkdir -p build
|
||||||
|
|
||||||
godot \
|
godot \
|
||||||
--headless \
|
--headless \
|
||||||
|
--verbose \
|
||||||
--path . \
|
--path . \
|
||||||
--export-release "Android" \
|
--export-release "Android" \
|
||||||
/tmp/test.apk
|
build/app.apk
|
||||||
|
|
||||||
|
- name: Check build
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
echo "=== BUILD ==="
|
||||||
|
ls -lah build 2>/dev/null || true
|
||||||
|
|
||||||
|
echo "=== ADB ==="
|
||||||
|
adb version 2>&1 || true
|
||||||
|
|
||||||
|
|
||||||
|
# ---
|
||||||
- name: Build APK
|
- name: Build APK
|
||||||
run: |
|
run: |
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
|
|||||||
Reference in New Issue
Block a user