-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
executable file
·33 lines (25 loc) · 1.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
---
##
# This file is part of the `src-run/augustus-file-lock-library` project.
#
# (c) Rob Frawley 2nd <[email protected]>
# (c) Scribe Inc <[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: "maFdPzxWX8a/GctWjuX+twPlkOWQVXW8iaMnugFbNxOCiqAs1NT1sPpIvpAQgIB6er6sdw9A6X/VnnbGY/eaABZZaxdvEQYI7RAwDzoAMIHDeiL7wBRqEXPaPPukBExyE/zmOGkDLAnIZacV8QYKwcRdWotsHZlbsVddod511lVL/JJybJ9M7xFH13ExF3weLSurWpQMTwtXiKfmw9r3zrah5KhBgwZ+paw2Z2r4490+yymN3l9z4kKZV2vzk31a72hNQeQvBJlOaqx8mjSjKxVNmqB4SW5WDTFXgwE2lF5GGyxsvgrGForXGjh0XY+tjh8zB5MaTaESWx9XRJvuqJgzCbgOUtodhNveMTi3XfzOvePyLpaxrWOQJSgSOdZZYROfcehPXQM5sI/jodBtGG17zr3DacKLfl5B/Gs5P7hEwFGAU8SwaMcjXWOuy900AVzvvOFYP215Otoq5oRJUFvIiJSbYL9CLCU9MLy3jKOx+degokIuGQZw6tNMLHzaB6YX6Z4P7EZiugSirfExK2MZj8G5KtVog3j0JE/DI4LUqiqLjyhZosdGyXC44mjOsm7DnD4dODmeBD0bRTxjLBUJwm4+nzJJwV/Bi2A4fB47CX0evP7cU2ltayI2m5cxESvLv2pt+uizhKbNt9VOj67ibuUbbe9IZovI1AhLAlM="
install :
- bash .bldr/bldr -b up
script :
- bin/simple-phpunit || bin/phpunit
after_script :
- bash .bldr/bldr -b down
...