Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
weboob
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
132
Issues
132
List
Boards
Labels
Milestones
Merge Requests
40
Merge Requests
40
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
weboob
weboob
Commits
6ee8a03b
Commit
6ee8a03b
authored
Aug 30, 2017
by
Florent Fourcot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: remove custom steps
parent
9170b372
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
22 deletions
+10
-22
.gitlab-ci.yml
.gitlab-ci.yml
+10
-22
No files found.
.gitlab-ci.yml
View file @
6ee8a03b
...
...
@@ -3,76 +3,64 @@ before_script:
-
"
REQUIREMENTS=$(mktemp)
&&
python
setup.py
requirements
>
${REQUIREMENTS}
&&
pip
install
-r
${REQUIREMENTS}
&&
rm
${REQUIREMENTS}"
-
"
pip
install
-r
.ci/requirements_modules.txt"
stages
:
-
"
build27"
-
"
test27"
-
"
deploy27"
-
"
build3"
-
"
test3"
-
"
deploy3"
build:2.7:
image
:
"
python:2.7"
stage
:
"
build
27
"
stage
:
"
build"
script
:
-
"
./tools/local_install.sh
~/bin"
pyflakes:2.7:
image
:
"
python:2.7"
stage
:
"
test
27
"
stage
:
"
test"
script
:
-
"
./tools/pyflakes.sh"
lint:2.7:
image
:
"
python:2.7"
stage
:
"
test
27
"
stage
:
"
test"
allow_failure
:
true
script
:
-
"
./tools/weboob_lint.sh"
unittests:2.7:
image
:
"
python:2.7"
stage
:
"
test
27
"
stage
:
"
test"
script
:
-
"
./tools/run_tests.sh"
doc:2.7:
image
:
"
python:2.7"
stage
:
"
deploy
27
"
stage
:
"
deploy"
script
:
-
"
cd
./docs
&&
make
html"
build:3:
image
:
"
python:3"
stage
:
"
build3"
when
:
always
stage
:
"
build"
script
:
-
"
./tools/local_install.sh
~/bin"
pyflakes:3:
image
:
"
python:3"
stage
:
"
test3"
when
:
always
stage
:
"
test"
script
:
-
"
./tools/pyflakes.sh"
lint:3:
image
:
"
python:3"
stage
:
"
test3"
when
:
always
stage
:
"
test"
allow_failure
:
true
script
:
-
"
./tools/weboob_lint.sh"
unittests:3:
image
:
"
python:3"
stage
:
"
test3"
when
:
always
stage
:
"
test"
script
:
-
"
./tools/run_tests.sh
-3"
doc:3:
image
:
"
python:3"
stage
:
"
deploy
3
"
stage
:
"
deploy"
script
:
-
"
cd
./docs
&&
make
html"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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