Compare commits

...

8 Commits

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

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: {