forked from dokku-alt/dokku-alt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwercker.yml
63 lines (62 loc) · 1.89 KB
/
wercker.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
box: wercker-labs/docker
build:
steps:
- install-packages:
packages: lxc-docker make
- script:
name: print the docker version
code: docker version
- script:
name: print system-wide docker info
code: docker info
- script:
name: build dokku-alt docker image
code: make docker_build
- script:
name: run acl tests
code: make docker_tests TESTS=apps/acl
- script:
name: run config tests
code: make docker_tests TESTS=apps/config
- script:
name: run dockerfile tests
code: make docker_tests TESTS=apps/dockerfile
- script:
name: run submodules tests
code: make docker_tests TESTS=apps/gitsubmodules
- script:
name: run go tests
code: make docker_tests TESTS=apps/go
- script:
name: run htpasswd tests
code: make docker_tests TESTS=apps/htpasswd
- script:
name: run java tests
code: make docker_tests TESTS=apps/java
- script:
name: run mariadb tests
code: make docker_tests TESTS=apps/mariadb
- script:
name: run mongodb tests
code: make docker_tests TESTS=apps/mongodb
- script:
name: run multi tests
code: make docker_tests TESTS=apps/multi
- script:
name: run nodejs-express tests
code: make docker_tests TESTS=apps/nodejs-express
- script:
name: run php tests
code: make docker_tests TESTS=apps/php
- script:
name: run php-multi tests
code: make docker_tests TESTS=apps/php-multi
- script:
name: run postgresql tests
code: make docker_tests TESTS=apps/postgresql
- script:
name: run python-flask tests
code: make docker_tests TESTS=apps/python-flask
- script:
name: run buildstep-image tests
code: make docker_tests TESTS=apps/buildstep-image