maybe this will work lol
agola/agola/agola build/test The run failed Details

This commit is contained in:
elee 2022-03-04 04:05:35 -06:00
parent 10a286b345
commit 1c0071281b
1 changed files with 5 additions and 4 deletions

View File

@ -61,7 +61,7 @@ local task_build_push_images(name, target, push) =
* file not found errors when doing COPY commands. * file not found errors when doing COPY commands.
* Workaround this buy putting all files inside /kaniko * Workaround this buy putting all files inside /kaniko
*/ */
local options = if !push then '--no-push' else '--destination sorintlab/%s:$AGOLA_GIT_TAG' % [target]; local options = if !push then '--no-push' else '--destination $DOCKERURL/tux/%s:$AGOLA_GIT_TAG' % [target];
{ {
name: name, name: name,
runtime: { runtime: {
@ -73,7 +73,8 @@ local task_build_push_images(name, target, push) =
], ],
}, },
environment: { environment: {
DOCKERAUTH: { from_variable: 'dockerauth' }, DOCKERAUTH: { from_variable: 'harbor-auth' },
DOCKERURL: { from_variable: 'harbor-url' },
}, },
shell: '/busybox/sh', shell: '/busybox/sh',
working_dir: '/kaniko', working_dir: '/kaniko',
@ -87,14 +88,14 @@ local task_build_push_images(name, target, push) =
cat << EOF > /kaniko/.docker/config.json cat << EOF > /kaniko/.docker/config.json
{ {
"auths": { "auths": {
"https://index.docker.io/v1/": { "auth" : "$DOCKERAUTH" } "$DOCKERURL": { "auth" : "$DOCKERAUTH" }
} }
} }
EOF EOF
|||, |||,
}, },
]) + [ ]) + [
{ type: 'run', command: '/kaniko/executor --context=dir:///kaniko/agola --build-arg AGOLAWEB_IMAGE=sorintlab/agola-web:v0.6.0 --target %s %s' % [target, options] }, { type: 'run', command: '/kaniko/executor --context=dir:///kaniko/agola --build-arg AGOLAWEB_IMAGE=harbor.tuxpa.in/tux/agola-web:v0.6.1 --target %s %s' % [target, options] },
], ],
depends: ['checkout code and save to workspace', 'integration tests', 'test docker driver'], depends: ['checkout code and save to workspace', 'integration tests', 'test docker driver'],
}; };