Compare commits

...

8 Commits

Author SHA1 Message Date
elee 0cd11ce578 debug env
agola/agola-web/agola web build/test The run finished successfully Details
2022-03-04 03:14:31 -06:00
elee 583dd58e20 switch to hyphen:
agola/agola-web/agola web build/test The run failed Details
2022-03-04 03:01:21 -06:00
elee 4d32019249 zzz
agola/agola-web/agola web build/test The run finished successfully Details
2022-03-04 02:48:21 -06:00
elee 81a2faf4ab forc
agola/agola-web/agola web build/test The run failed Details
2022-03-04 02:47:04 -06:00
elee d1b067e81b maybe now?
agola/agola-web/agola web build/test The run failed Details
2022-03-04 02:34:07 -06:00
elee 9c4598973d maybe fix?
agola/agola-web/agola web build/test The run failed Details
2022-03-04 02:25:35 -06:00
elee 8794196988 fix
agola/agola-web/agola web build/test The run failed Details
2022-03-04 02:17:39 -06:00
elee 7de411662d test tuxpaint
agola/agola-web/agola web build/test The run failed Details
2022-03-04 02:04:34 -06:00
1 changed files with 4 additions and 3 deletions

View File

@ -77,7 +77,8 @@ local task_build(version, arch) = {
],
},
environment: {
DOCKERAUTH: { from_variable: 'dockerauth' },
DOCKERAUTH: { from_variable: 'harbor-auth' },
DOCKERURL: { from_variable: 'harbor-url' },
},
shell: '/busybox/sh',
working_dir: '/workspace',
@ -90,13 +91,13 @@ local task_build(version, arch) = {
cat << EOF > /kaniko/.docker/config.json
{
"auths": {
"https://index.docker.io/v1/": { "auth" : "$DOCKERAUTH" }
"$DOCKERURL": { "auth" : "$DOCKERAUTH" }
}
}
EOF
|||,
},
{ type: 'run', command: '/kaniko/executor --destination sorintlab/agola-web:$AGOLA_GIT_TAG' },
{ type: 'run', command: '/kaniko/executor --destination $DOCKERURL/tux/agola-web:$AGOLA_GIT_TAG' },
],
depends: ['checkout code and save to workspace'],
when: {