forked from Sylius/Sylius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
90 lines (79 loc) · 2.18 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
language: php
env:
global:
- SYLIUS_CACHE_DIR=$HOME/.sylius-cache
- SYLIUS_BUILD_DIR=etc/build
sudo: false
matrix:
include:
-
php: 7.0
env: SYLIUS_SUITE="application"
cache:
directories:
- vendor
- bin
- node_modules
- $SYLIUS_CACHE_DIR
services:
- memcached
-
php: 7.0
env: SYLIUS_SUITE="packages"
cache:
directories:
- ~/.composer/cache/files
- $SYLIUS_CACHE_DIR
addons:
apt:
packages:
- parallel
-
php: 5.6
env: SYLIUS_SUITE="application"
cache:
directories:
- vendor
- bin
- node_modules
- $SYLIUS_CACHE_DIR
services:
- memcached
-
php: 5.5
env: SYLIUS_SUITE="application"
cache:
directories:
- vendor
- bin
- node_modules
- $SYLIUS_CACHE_DIR
services:
- memcached
-
php: 5.5
env: SYLIUS_SUITE="packages"
cache:
directories:
- ~/.composer/cache/files
- $SYLIUS_CACHE_DIR
addons:
apt:
packages:
- parallel
before_install:
- etc/travis/run-suite ${SYLIUS_SUITE} before_install
install:
- etc/travis/run-suite ${SYLIUS_SUITE} install
before_script:
- etc/travis/run-suite ${SYLIUS_SUITE} before_script
script:
- etc/travis/run-suite ${SYLIUS_SUITE} script
before_cache:
- etc/travis/run-suite ${SYLIUS_SUITE} before_cache
after_success:
- etc/travis/run-suite ${SYLIUS_SUITE} after_success
after_failure:
- etc/travis/run-suite ${SYLIUS_SUITE} after_failure
after_script:
- etc/travis/run-suite ${SYLIUS_SUITE} after_script