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/
|
||||
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
|
||||
run: |
|
||||
mkdir -p build
|
||||
|
||||
godot \
|
||||
--headless \
|
||||
--verbose \
|
||||
--path . \
|
||||
--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
|
||||
run: |
|
||||
mkdir -p build
|
||||
|
||||
Reference in New Issue
Block a user