Skip to content
Snippets Groups Projects
Unverified Commit d48fec8e authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[template][gitlab-ci] Specify the image to use for deploy and pypi jobs

Currently, these jobs uses the default image (whatever it is) but it
looks like a recent update removed curl from it and likely git as well
and thus breaks these jobs.

To avoid that, lets use the same image as the Linux build jobs since
they have all what is required.
parent 381295c5
Branches
No related tags found
1 merge request!346Specify the image to use for deploy and pypi jobs
Pipeline #87190 failed
...@@ -129,6 +129,7 @@ build_linux_310: ...@@ -129,6 +129,7 @@ build_linux_310:
# Deploy targets # Deploy targets
.deploy_template: .deploy_template:
extends: .bootstrap extends: .bootstrap
image: quay.io/condaforge/linux-anvil-cos7-x86_64
stage: deploy stage: deploy
script: script:
- git config --global --add safe.directory ${CI_PROJECT_DIR} - git config --global --add safe.directory ${CI_PROJECT_DIR}
...@@ -165,6 +166,7 @@ deploy_stable: ...@@ -165,6 +166,7 @@ deploy_stable:
pypi: pypi:
extends: .bootstrap extends: .bootstrap
image: quay.io/condaforge/linux-anvil-cos7-x86_64
stage: pypi stage: pypi
environment: pypi environment: pypi
only: only:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment