Skip to content
StepArgumentsStatus
Start of Pipeline - (52 sec in block)
node - (50 sec in block)
node block - (30 sec in block)
stage - (8.1 sec in block)Prepare
stage block (Prepare) - (7.1 sec in block)
sh - (1.8 sec in self) echo "Hello World" > README curl -sSL -o cosign https://github.com/sigstore/cosign/releases/latest/download/cosign-linux-amd64 chmod u+x cosign
stage - (16 sec in block)Sign
stage block (Sign) - (15 sec in block)
withCredentials - (7.3 sec in block)
withCredentials block - (2 sec in block)
sh - (1.5 sec in self) IDP_DATA=$(mktemp) OID_TOKEN=$(mktemp) chmod 600 "${IDP_DATA}" "${OID_TOKEN}" trap 'rm -vf "${IDP_DATA}" "${OID_TOKEN}"' EXIT cat <<EOF > "${IDP_DATA}" username=${_BOT__USERNAME} &password=${_BOT__PASSWORD} &grant_type=password &client_id=sigstore EOF curl -sSL -X POST --url https://auth.eclipse.org/auth/realms/sigstore/protocol/openid-connect/token --header "Content-Type: application/x-www-form-urlencoded" --data @"${IDP_DATA}" | jq -r ".access_token" | head -c -1 > "${OID_TOKEN}" ./cosign sign-blob README -y --bundle README.bundle --oidc-issuer=https://auth.eclipse.org/auth/realms/sigstore --identity-token="${OID_TOKEN}"
sh - (1.5 sec in self) ./cosign verify-blob README --bundle README.bundle --certificate-oidc-issuer=https://auth.eclipse.org/auth/realms/sigstore --certificate-identity=cbi-dev@eclipse.org