Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 1a5d61a9 authored by usov_i's avatar usov_i
Browse files

Update .gitlab-ci.yml

parent b41ab102
No related branches found
No related tags found
No related merge requests found
Pipeline #10401 passed
stages: stages:
- deploy-test - build-and-publish
- deploy-prod - deploy
build-and-publish:
stage: build-and-publish
rules:
- if: $CI_COMMIT_TAG
script:
- source /opt/miniconda3/etc/profile.d/conda.sh
- conda config --add channels conda-forge
- conda config --set solver libmamba
- conda config --set anaconda_upload yes
- conda build --token $ANACONDA_TOKEN /opt/pyzebra/conda-recipe
deploy-test: deploy-test:
stage: deploy-test stage: deploy
rules: rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
script: script:
...@@ -12,11 +23,10 @@ deploy-test: ...@@ -12,11 +23,10 @@ deploy-test:
- sudo systemctl restart pyzebra-test.service - sudo systemctl restart pyzebra-test.service
deploy-prod: deploy-prod:
stage: deploy-prod stage: deploy
needs: ["build-and-publish"]
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
when: delayed
start_in: 10 minutes
script: script:
- source /opt/miniconda3/etc/profile.d/conda.sh - source /opt/miniconda3/etc/profile.d/conda.sh
- conda activate prod - conda activate prod
......
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