-
Notifications
You must be signed in to change notification settings - Fork 33
/
.travis.yml
55 lines (49 loc) · 1.24 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
language: python
python:
- 2.7
env:
- DOCKER_IMAGE=nginx
- DOCKER_IMAGE=apache
- DOCKER_IMAGE=mssql
- DOCKER_IMAGE=php/php53
- DOCKER_IMAGE=php/php53-debug
- DOCKER_IMAGE=php/php54
- DOCKER_IMAGE=php/php54-debug
- DOCKER_IMAGE=php/php54-cron
- DOCKER_IMAGE=php/php55
- DOCKER_IMAGE=php/php55-debug
- DOCKER_IMAGE=php/php55-cron
- DOCKER_IMAGE=php/php56
- DOCKER_IMAGE=php/php56-debug
- DOCKER_IMAGE=php/php56-cron
- DOCKER_IMAGE=php/php70
- DOCKER_IMAGE=php/php70-debug
- DOCKER_IMAGE=php/php70-cron
- DOCKER_IMAGE=php/php71
- DOCKER_IMAGE=php/php71-debug
- DOCKER_IMAGE=php/php71-cron
- DOCKER_IMAGE=php/php72
- DOCKER_IMAGE=php/php72-debug
- DOCKER_IMAGE=php/php72-cron
- DOCKER_IMAGE=php/php73
- DOCKER_IMAGE=php/php73-debug
- DOCKER_IMAGE=php/php73-cron
- DOCKER_IMAGE=php/php74
- DOCKER_IMAGE=php/php74-debug
- DOCKER_IMAGE=php/php74-cron
- DOCKER_IMAGE=php/php80
- DOCKER_IMAGE=php/php80-debug
- DOCKER_IMAGE=php/php80-cron
- DOCKER_IMAGE=php/php81
- DOCKER_IMAGE=php/php81-debug
- DOCKER_IMAGE=php/php81-cron
services:
- docker
install:
- docker build -t ${DOCKER_IMAGE/\//-} $DOCKER_IMAGE
- docker run --rm -d --name ${DOCKER_IMAGE/\//-} ${DOCKER_IMAGE/\//-}
before_script: skip
script:
- docker ps | grep -q ${DOCKER_IMAGE/\//-}
after_script:
- docker images