Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 1 | --- |
| 2 | driver: |
| 3 | name: docker |
| 4 | hostname: git.ci.local |
| 5 | use_sudo: false |
| 6 | |
| 7 | provisioner: |
| 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 | dependencies: |
| 14 | - name: linux |
| 15 | repo: git |
| 16 | source: https://github.com/salt-formulas/salt-formula-linux |
Richard Felkl | 66375d8 | 2017-10-09 11:26:23 +0200 | [diff] [blame] | 17 | - name: nginx |
| 18 | repo: git |
| 19 | source: https://github.com/salt-formulas/salt-formula-nginx |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 20 | log_level: error |
| 21 | formula: git |
| 22 | grains: |
| 23 | noservices: True |
| 24 | state_top: |
| 25 | base: |
| 26 | "*": |
| 27 | - git |
| 28 | pillars: |
| 29 | top.sls: |
| 30 | base: |
| 31 | "*": |
| 32 | - git |
| 33 | verifier: |
| 34 | name: inspec |
| 35 | sudo: true |
| 36 | |
| 37 | platforms: |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 38 | - name: <%=ENV['PLATFORM'] || 'ubuntu-xenial'%> |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 39 | driver_config: |
Martin Polreich | 211aa55 | 2017-07-17 10:41:23 +0200 | [diff] [blame] | 40 | image: <%=ENV['PLATFORM'] || 'trevorj/salty-whales:xenial'%> |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 41 | platform: ubuntu |
| 42 | |
| 43 | suites: |
| 44 | |
| 45 | - name: client_single |
| 46 | provisioner: |
| 47 | pillars-from-files: |
| 48 | git.sls: tests/pillar/client_single.sls |
Richard Felkl | 66375d8 | 2017-10-09 11:26:23 +0200 | [diff] [blame] | 49 | - name: server_single |
| 50 | provisioner: |
| 51 | pillars-from-files: |
| 52 | git.sls: tests/pillar/server_single.sls |
Petr Michalec | 39f3dfb | 2017-02-10 12:08:30 +0100 | [diff] [blame] | 53 | # vim: ft=yaml sw=2 ts=2 sts=2 tw=125 |