blob: a9b99a02aa60b5c8905dcc65b409ea9fb35e89c0 [file] [log] [blame]
Petr Michalece9a6c2a2017-03-05 20:14:34 +01001sudo: required
2services:
3 - docker
4
5install:
6 - pip install PyYAML
7 - pip install virtualenv
8 - |
9 test -e Gemfile || cat <<EOF > Gemfile
10 source 'https://rubygems.org'
11 gem 'rake'
12 gem 'test-kitchen'
13 gem 'kitchen-docker'
14 gem 'kitchen-inspec'
15 gem 'inspec'
Martin Polreicha48f1a32017-03-28 16:57:17 +020016 gem 'kitchen-salt', :git => 'https://github.com/salt-formulas/kitchen-salt.git'
Petr Michalece9a6c2a2017-03-05 20:14:34 +010017 - bundle install
18
19env:
Martin Polreichb8af96a2017-08-24 16:06:52 +020020 - PLATFORM=trevorj/salty-whales:trusty MYSQL_VERSION='5.5' SUITE=single
21 - PLATFORM=trevorj/salty-whales:xenial MYSQL_VERSION='5.7' SUITE=single
22 - PLATFORM=trevorj/salty-whales:trusty MYSQL_VERSION='5.5' SUITE=single_fernet
23 - PLATFORM=trevorj/salty-whales:xenial MYSQL_VERSION='5.7' SUITE=single_fernet
24 - PLATFORM=trevorj/salty-whales:trusty MYSQL_VERSION='5.5' SUITE=under-apache
25 - PLATFORM=trevorj/salty-whales:xenial MYSQL_VERSION='5.7' SUITE=under-apache
Petr Michalece9a6c2a2017-03-05 20:14:34 +010026
27before_script:
Martin Polreicha48f1a32017-03-28 16:57:17 +020028 - set -o pipefail
Petr Michalece9a6c2a2017-03-05 20:14:34 +010029 - make test | tail
30
31script:
32 - bundle exec kitchen verify single -t tests/integration
33 - bundle exec kitchen converge under-apache | tail
34 - bundle exec kitchen exec under-apache -c "sudo service mysql start && sudo service apache2 start && keystone-manage db_sync && sleep 1"
35 - bundle exec kitchen verify under-apache -t tests/integration
Martin Polreicha48f1a32017-03-28 16:57:17 +020036
37notifications:
38 webhooks:
39 urls:
40 - https://webhooks.gitter.im/e/6123573504759330786b
41 on_success: change # options: [always|never|change] default: always
42 on_failure: never # options: [always|never|change] default: always
43 on_start: never # options: [always|never|change] default: always
44 on_cancel: never # options: [always|never|change] default: always
45 on_error: never # options: [always|never|change] default: always
46 email: false