-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·32 lines (24 loc) · 1.14 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
---
#
# This file is part of the `src-run/augustus-log-library` project.
#
# (c) Rob Frawley 2nd <[email protected]>
#
# For the full copyright and license information, view the LICENSE.md
# file distributed with this source code.
#
sudo : false
language : php
php : [ 7.1, 7.2, nightly ]
git:
depth : 3
env:
global:
- secure: "T8gB44uIRubl3TjtObDozf+J81Ia4jS8wSzK9e2AZkknXAe8KGQREMQ8OVhU1W8yEKP5KM9Ryai76AU9KoL/HQNpxt8J5xS4IydNk6uzPxUTEeiCSq21dstEtQejBzE3GSmMx6VecT0zCDCGuPUjf39BwZ+movcJ06GAlsA0SR9jRoyYFr3LDL9Dom/i0fKVP6yS5cLT7zJn0c/tEFMt17XAnwPQTk8XrDqj7appE+S6NDeVvGtXRTTRvdz4Ed8iixj/nhUvtUs2cMMWoHNgD7J6Fp3DnKcYOBg6qgJs+QPu8rpmSRrCj0OFxicHBrDyAN46WgTPAhLXI6DIliAdR3FhSIE0pGNqgPSORpuKH/Fj7Wy81+L0m9yHrccDI1e0bjUSHuzGgMB8+x7C54oIbQPXZH8G3mDx6EPI+fNOmyX2DQtgauRu6R9sheEHKNKLb5+O/ug5RP0nvFNbqG0E84xdEotWcyA9mrN8ntHzhdZnyrr7/AgwJRvhbcCcPfU+cNqjaA+lpsyT9R9Ku2Uaum5N3Ui7J3arMYdI9KxKacr5toWfNCeAXlUPUQY4OdVs7mDypePNKthPHls2S2/dVVRxcY+7NgY1UjPwBemLu1RdFel4ybqvUVx6H5w97xyGnJQLdWHjHEAmUeGyXTF6sfvc5V6NU2Rs9NheYkMd/iY="
install :
- bash .bldr/bldr -b up
script :
- bin/simple-phpunit || bin/phpunit
after_script :
- bash .bldr/bldr -b down
...