make_post_sell/.gitlab-ci.yml

56 lines
No EOL
1.3 KiB
YAML

stages:
- test
- build
- publish
- memopoly.com
test:
stage: test
tags: ["shell"]
script: make test
artifacts:
paths:
- env.vanilla
expire_in: 1 hour
build:
stage: build
tags: ["shell"]
script:
- mv env.vanilla env
- make prod
# copy static assets to env/static & create a tarball of the static files.
- cp -pr make_post_sell/static env/static
- cp -pr env/static static
- tar -zcf static.tar.gz static
# move the virtualenv with virtualenv-clone into desired location.
- virtualenv-clone env /opt/make_post_sell/env
# make tarball of virtualenv.
- tar -zcf env.tar.gz -C /opt/make_post_sell .
# create commit-hash.txt to track this build's git commit hash.
- echo $CI_COMMIT_SHA >> commit-hash.txt
# clean up directory outside of gitlab-runner filesystem.
- rm -rf /opt/make_post_sell/env
artifacts:
paths:
- env.tar.gz
- static.tar.gz
- commit-hash.txt
#expire_in: 1 month
publish:
stage: publish
tags: ["shell"]
script:
# publish build to Salt Master
- sudo /opt/salt-call-put-artifacts-onto-salt-master.sh
memopoly.com:
stage: memopoly.com
tags: ["memopoly.com"]
script:
# publish build to Salt Master
- sudo /opt/salt-call-state-highstate.sh
rules:
- if: '$CI_COMMIT_BRANCH == develop'