diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2014-10-27 15:18:02 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2014-10-27 16:24:36 -0700 |
commit | 6e45661006e0ba6ea73cd2984e84e368f0d81f4b (patch) | |
tree | 316e38a8f035e3617fb89279212925fd60aca3e5 /.travis.yml | |
parent | c50046851b5e2af3cfef6c7b02b69e3c36a51db1 (diff) | |
download | chef-6e45661006e0ba6ea73cd2984e84e368f0d81f4b.tar.gz |
only run ubuntu in travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 65d28d0f68..13891205a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,9 +40,9 @@ matrix: before_script: - cd kitchen-tests script: - - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen test; fi + - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen test ubuntu; fi after_script: - - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen destroy; fi + - if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then bundle exec kitchen destroy ubuntu; fi env: - KITCHEN_YAML=.kitchen.travis.yml - EC2_SSH_KEY_PATH=~/.ssh/id_aws.pem |