forked from uemanet/harpia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (26 loc) · 809 Bytes
/
.travis.yml
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
## Harpia build configs
language: php
dist: trusty
sudo: required
php:
- '7.1'
- '7.2'
before_script:
- cp .env.travis .env
- phpenv config-rm xdebug.ini
- composer self-update
- composer install --no-interaction
jobs:
include:
- stage: Academico Tests
script:
- ./bin/paratest -p4 --phpunit ./bin/phpunit --configuration phpunit.xml modulos/Academico/
- stage: Geral Tests
script:
- ./bin/paratest -p4 --phpunit ./bin/phpunit --configuration phpunit.xml modulos/Geral/
- stage: Integracao Tests
script:
- ./bin/paratest -p4 --phpunit ./bin/phpunit --configuration phpunit.xml modulos/Integracao/
- stage: Seguranca Tests
script:
- ./bin/paratest -p4 --phpunit ./bin/phpunit --configuration phpunit.xml modulos/Seguranca/