Images CI for "" #144
Annotations
1 error
OpenJDK (jdk11, temurin, extra) / image
buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -eux\nexport DEBIAN_FRONTEND=\"noninteractive\"\n\napt-get update\napt-get install -y gnupg ca-certificates curl\ncurl -so- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg\necho \"deb https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main\" | tee /etc/apt/sources.list.d/adoptium.list\napt-get update\n\n# The temurin source is currently very unstable, add more retries for it\n# https://github.com/adoptium/adoptium-support/issues/554\n# https://github.com/adoptium/installer/issues/766\nset +e\nattempts=10\nfor attempt in $(seq 1 $attempts); do\n if apt-get install -y \"temurin-${JAVA}-jdk\"; then\n break\n fi\n if [ \"$attempt\" != \"$attempts\" ]; then\n echo \"Install attempt #$attempt failed. Waiting 60 seconds for another attempt...\"\n sleep 60\n update-ca-certificates\n else\n echo \"All $attempts attempts failed\"\n exit 1\n fi\ndone\nset -e\n\njava -version\njavac -version\nrm -rf /var/lib/apt/lists/*\n" did not complete successfully: exit code: 1
|