diff options
author | 2018-06-06 16:04:29 +0100 | |
---|---|---|
committer | 2018-06-06 16:04:29 +0100 | |
commit | 57985da1a13ed5637c58b3035b94988daaf3e567 (patch) | |
tree | 63f962a2bfaaea8294677d8405d8c5bca9e6b82e /.gitlab-ci.yml | |
parent | [CI] Add RDB/RMQ hosts (diff) |
[CI] Fix deployment
Diffstat (limited to '')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 727d67bc..629c744a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,6 @@ services: before_script: - - apk add --update ruby ruby-dev ruby-rdoc ruby-irb - apk add --update tini - apk add --update git - apk add --update build-base @@ -26,9 +25,6 @@ before_script: - apk add --update autoconf - apk add --update automake - apk add --update libtool - - pip install pipenv - - pipenv sync --dev --three - - gem install scss_lint stages: - test @@ -37,6 +33,10 @@ stages: test: stage: test script: + - apk add --update ruby ruby-dev ruby-rdoc ruby-irb + - pip install pipenv + - pipenv sync --dev --three + - gem install scss_lint - pipenv run lint - pipenv run lintscss - pipenv run python gunicorn_config.py |