kitchen-docker 2.14.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml DELETED
@@ -1,57 +0,0 @@
1
- matrix:
2
- include:
3
- - os: linux
4
- rvm: 2.4.9
5
- dist: xenial
6
- language: ruby
7
- cache: bundler
8
- script:
9
- - bundle exec docker version
10
- - bundle exec kitchen --version
11
- - bundle exec rake spec
12
- - bundle exec kitchen test -d always
13
- - os: linux
14
- rvm: 2.5.7
15
- dist: xenial
16
- language: ruby
17
- cache: bundler
18
- script:
19
- - bundle exec docker version
20
- - bundle exec kitchen --version
21
- - bundle exec rake spec
22
- - bundle exec kitchen test -d always
23
- - os: linux
24
- rvm: 2.6.5
25
- dist: xenial
26
- language: ruby
27
- cache: bundler
28
- script:
29
- - bundle exec docker version
30
- - bundle exec kitchen --version
31
- - bundle exec rake spec
32
- - bundle exec kitchen test -d always
33
- - os: windows
34
- language: bash
35
- install:
36
- - choco uninstall ruby
37
- - choco install ruby --version=2.6.5.1
38
- - export PATH=$(echo "$PATH" | sed -e 's/:\/c\/tools\/ruby27\/bin//')
39
- - export PATH=$PATH:/c/tools/ruby26/bin
40
- - choco install mingw
41
- - choco install msys2
42
- - ridk.cmd exec pacman -S --noconfirm --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-libxslt
43
- script:
44
- - if [[ $(tasklist | grep "gpg-agent") ]]; then taskkill -IM "gpg-agent.exe" -F; else echo "Process gpg-agent not found. Skipping."; fi
45
- - powershell -ExecutionPolicy Bypass -NoLogo -File docker.ps1
46
- - export KITCHEN_YAML=.kitchen.windows.yml
47
- - ruby -v
48
- - gem install bundler
49
- - bundle config build.nokogiri --use-system-libraries
50
- - bundle install
51
- - bundle exec docker version
52
- - bundle exec kitchen --version
53
- - bundle exec rake spec
54
- - bundle exec kitchen test -d always
55
-
56
- services:
57
- - docker