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

add ci config

parent 2e5e48df
No related merge requests found
stages:
- test
- deploy
before_script:
- echo "preparing environment"
- virtualenv env
- . env/bin/activate
- pip install -r pip-packages.txt
test:
stage: test
script:
- echo "Running tests"
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
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