.gitlab-ci.yml
745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
image: noosfero/ci
before_script:
- mkdir -p locale # makes quick-start skip compiling translations
- ./script/set-apt-proxy
- ./script/silent-quick-start
stages:
- smoke-tests
- not-so-slow-tests
- slow-tests
smoke:
script: bundle exec rake ci:smoke
stage: smoke-tests
units:
script: bundle exec rake test:units
stage: not-so-slow-tests
functionals:
script: bundle exec rake test:functionals
stage: not-so-slow-tests
integration:
script: bundle exec rake test:integration
stage: not-so-slow-tests
cucumber:
script: bundle exec rake cucumber
stage: slow-tests
selenium:
script: bundle exec rake selenium
stage: slow-tests
plugins:
script: bundle exec rake test:noosfero_plugins
stage: slow-tests