Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jochem Bijlard
fractalis
Commits
4fc7b222
Commit
4fc7b222
authored
Nov 27, 2017
by
Sascha Herzinger
Browse files
trying to fix gitlab ci
parent
dee936c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
4fc7b222
...
...
@@ -5,13 +5,12 @@ variables:
PYPI_PASSWORD
:
SECURE
stages
:
-
setup
-
test
-
publish
-
release
-
cleanup
in
stall
_deps
:
stage
:
setup
te
st
:
all:
stage
:
test
script
:
-
yum install -y epel-release
-
yum update -y
...
...
@@ -19,33 +18,28 @@ install_deps:
-
pip3 install -e . -i https://pypi.lcsb.uni.lu/simple
-
pip3 install -r requirements.txt -i https://pypi.lcsb.uni.lu/simple
-
R -e 'source("https://bioconductor.org/biocLite.R"); biocLite(); biocLite("limma")'
tests
:
stage
:
test
script
:
-
redis-server --daemonize yes
-
rabbitmq-server -detached
-
celery worker -A fractalis:celery -D -l info
-
python3 setup.py test
-
flake8
dependencies
:
-
install_deps
release
:
stage
:
publish
release:
pypi:
stage
:
release
script
:
-
yum install -y epel-release
-
yum update -y
-
yum install -y python34 python34-pip
-
echo "[server-login]" > ~/.pypirc
-
echo "username=" ${PYPI_USER} >> ~/.pypirc
-
echo "password=" ${PYPI_PASSWORD} >> ~/.pypirc
-
python3 setup.py check sdist upload
only
:
-
tags
except
:
-
branches
dependencies
:
-
install_deps
rm_
secrets
:
cleanup:
secrets:
stage
:
cleanup
when
:
always
script
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment