forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
57 lines (48 loc) · 1.4 KB
/
.travis.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
sudo: required
dist: trusty
services: docker
language: ruby
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_install:
- gem --version
bundler_args: --with integration --without changelog debug docs
script:
- bundle exec rake
- export KITCHEN_YAML=.kitchen.dokken.yml
- bundle exec kitchen test
branches:
only:
- master
matrix:
include:
- rvm: 2.4.4
# To run the proxy tests we need additional gems than what Test Kitchen normally uses
# for testing
gemfile: Gemfile.proxy_tests
before_install:
- sudo usermod -p `openssl passwd -1 'travis'` travis
- gem install bundler
- sudo apt-get update
- sudo apt-get -y install squid3 git curl
env:
- global:
- machine_user=travis
- machine_pass=travis
- machine_port=22
- PROXY_TESTS_DIR=proxy_tests/files/default/scripts
- PROXY_TESTS_REPO=$PROXY_TESTS_DIR/repo
- KITCHEN_YAML=/home/travis/build/test-kitchen/test-kitchen/.kitchen.proxy.yml
script:
- bundle exec kitchen --version
- git clone https://github.com/chef/proxy_tests.git
- rvmsudo -E bundle exec bash $PROXY_TESTS_DIR/run_tests.sh kitchen \* \* /tmp/out.txt
after_script:
- cat /tmp/out.txt
- sudo cat /var/log/squid3/cache.log
- sudo cat /var/log/squid3/access.log
allow_failures:
- rvm: ruby-head