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 982887ab authored by usov_i's avatar usov_i
Browse files

Split build-and-publish job

[skip ci]
parent 19e934e8
No related branches found
No related tags found
No related merge requests found
stages:
- build-and-publish
- build
- deploy
- publish
- cleanup
default:
......@@ -11,33 +12,26 @@ workflow:
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
build-and-publish:
stage: build-and-publish
rules:
- if: $CI_COMMIT_TAG
build-job:
stage: build
script:
- 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
- conda build --no-anaconda-upload ./conda-recipe
deploy-test:
deploy-test-job:
stage: deploy
environment: testing
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
script:
- cd /opt/pyzebra
- git pull origin main --tags
- conda activate test
- conda build ./conda-recipe
- conda install --use-local --only-deps pyzebra -y
- sudo systemctl restart pyzebra-test.service
deploy-prod:
deploy-prod-job:
stage: deploy
environment: production
needs: ["build-and-publish"]
rules:
- if: $CI_COMMIT_TAG
when: delayed
......@@ -47,6 +41,13 @@ deploy-prod:
- conda update pyzebra -y
- sudo systemctl restart pyzebra-prod.service
publish-job:
stage: publish
rules:
- if: $CI_COMMIT_TAG
script:
- anaconda --token $ANACONDA_TOKEN upload $(conda build ./conda-recipe --output)
cleanup-job:
stage: cleanup
script:
......
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