blob: 6c2e5a4a240bee9cbfddf33850d779298ea7e013 [file] [log] [blame]
Martin Polreich1dbadf52017-05-17 15:01:11 +02001---
2driver:
3 name: docker
4 hostname: java.ci.local
5 use_sudo: false
6
7provisioner:
8 name: salt_solo
9 salt_install: bootstrap
10 salt_bootstrap_url: https://bootstrap.saltstack.com
11 salt_version: latest
12 require_chef: false
13 log_level: error
14 formula: java
15 grains:
16 noservices: True
17 state_top:
18 base:
19 "*":
20 - java
21 pillars:
22 top.sls:
23 base:
24 "*":
25 - java
26
27verifier:
28 name: inspec
29 sudo: true
30
31
32platforms:
33 - name: <%=ENV['PLATFORM'] || 'ubuntu-xenial'%>
34 driver_config:
35 image: <%=ENV['PLATFORM'] || 'trevorj/salty-whales:xenial'%>
36 platform: ubuntu
37
38suites:
39
Martin Polreicha66ab062017-08-08 14:03:01 +020040 - name: <%=ENV['JDK'] || 'openjdk'%>-<%=ENV['JAVA_VERSION'] || '8'%>
Martin Polreich1dbadf52017-05-17 15:01:11 +020041 provisioner:
42 pillars-from-files:
Martin Polreicha66ab062017-08-08 14:03:01 +020043 java.sls: tests/pillar/<%=ENV['JDK'] || 'openjdk'%>-<%=ENV['JAVA_VERSION'] || '8'%>.sls
Martin Polreich1dbadf52017-05-17 15:01:11 +020044
Martin Polreicha66ab062017-08-08 14:03:01 +020045# vim: ft=yaml sw=2 ts=2 sts=2 tw=125