Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7da72ccd authored by THONIER Florian's avatar THONIER Florian
Browse files

gitlab-ci, don't use missing make command

parent 2cef4f3f
No related branches found
No related tags found
1 merge request!3main.py; fix error of legacy file size that is sometimes 0
Pipeline #1095429 passed with warnings
...@@ -7,10 +7,15 @@ stages : ...@@ -7,10 +7,15 @@ stages :
deploy_docker: deploy_docker:
stage: publish_release stage: publish_release
image: docker:latest image: docker:latest
services:
- name: docker:dind
alias: docker
command: ["--tls=false"]
services: services:
- docker:dind - docker:dind
script: script:
- make init_submodules - git submodule init
- git submodule update --remote
- export CUR_DATE=`date +%Y-%m-%d` - export CUR_DATE=`date +%Y-%m-%d`
- export SHA=`echo $CI_COMMIT_SHA | awk '{ print substr($0, 0, 8) }'` - export SHA=`echo $CI_COMMIT_SHA | awk '{ print substr($0, 0, 8) }'`
- export TAG="vidjil/metrics:$CUR_DATE-$SHA" - export TAG="vidjil/metrics:$CUR_DATE-$SHA"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment