-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (27 loc) · 789 Bytes
/
.travis.yml
File metadata and controls
31 lines (27 loc) · 789 Bytes
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
---
language: minimal
services:
- docker
before_install:
- docker pull retr0h/molecule:latest
script:
- docker run --rm -it
-v "$(pwd)":/tmp/$(basename "${PWD}"):ro
-v /var/run/docker.sock:/var/run/docker.sock
-w /tmp/$(basename "${PWD}")
retr0h/molecule:latest
molecule test -s lint
- docker run --rm -it
-v "$(pwd)":/tmp/$(basename "${PWD}"):ro
-v /var/run/docker.sock:/var/run/docker.sock
-w /tmp/$(basename "${PWD}")
retr0h/molecule:latest
sudo molecule test -s common
- docker run --rm -it
-v "$(pwd)":/tmp/$(basename "${PWD}"):ro
-v /var/run/docker.sock:/var/run/docker.sock
-w /tmp/$(basename "${PWD}")
retr0h/molecule:latest
sudo molecule test -s mapr-core-docker
matrix:
fast_finish: true