Skip to content
Snippets Groups Projects
Commit 2ef6cad7 authored by Zack Wong's avatar Zack Wong
Browse files

Merge branch 'coffee-testing' into 'master'

Coffee testing

See merge request frekk/uccportal!3
parents 80c3b72c 452e67d9
1 merge request!3Coffee testing
stages:
- deploy
before_script:
script:
- echo "preparing environment"
- virtualenv env
- . env/bin/activate
- pip install -r pip-packages.txt
deploy_staging:
stage: deploy
script:
- echo "Deploy to staging server"
environment:
name: stage
url: https://portal.ucc.asn.au/stage
only:
- master
deploy_prod:
stage: deploy
script:
- echo "Deploy to production server"
environment:
name: production
url: https://portal.ucc.asn.au
when: manual
only:
- master
deploy_test:
stage: deploy
script:
- echo "Deploy to test"
- . venv/bin/activate
- python3 src/manage.py makemigrations
- python3 src/manage.py migrate --run-syncdb
- ln -s /etc/uwsgi/vassals/test.skel /etc/uwsgi/vassals/$CI_COMMIT_REF_NAME.ini
environment:
name: test/$CI_COMMIT_REF_NAME
url: https://$CI_COMMIT_REF_NAME.test.ucc.asn.au
except:
- master
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment