Install Node.js in the Android build container #7
Loading…
Reference in a new issue
No description provided.
Delete branch "android-app"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
actions/checkout and actions/upload-artifact are JavaScript actions, so the
runner execs
nodeinside the job container. eclipse-temurin:17-jdk has noNode, which fails the job before checkout with:
exec: "node": executable file not found in $PATH
The backend job already installs nodejs for the same reason; this matches it.
curl comes along for the SDK download rather than being assumed present.
Verified by running the whole job in eclipse-temurin:17-jdk against a clean
git archivecheckout: apt install, SDK licences and packages, then./gradlew --no-daemon assembleReleaseproducing the same APK the hostbuild does.
Co-Authored-By: Claude Opus 5 noreply@anthropic.com