Sha256: 49ff716102815af505b89c052d494e30a150319d473e3d391ac62ebcd5438fc0

Contents?: true

Size: 538 Bytes

Versions: 5

Compression:

Stored size: 538 Bytes

Contents

#!/bin/bash

set -evx

# run unit tests
/opt/chefdk/embedded/bin/bundle install && /opt/chefdk/bin/chef exec rake ci

# Don't run acceptance tests on forks. The decryption keys are not available.
if [ "${TRAVIS_REPO_SLUG}" = "chef/mixlib-install" ]; then
  # setup acceptance tests
  cd acceptance && export BUNDLE_GEMFILE=$PWD/Gemfile && /opt/chefdk/embedded/bin/bundle install && export APPBUNDLER_ALLOW_RVM=true
  # run acceptances tests and force cleanup
  /opt/chefdk/embedded/bin/bundle exec chef-acceptance test --force-destroy
fi

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mixlib-install-2.1.5 ci/script.sh
mixlib-install-2.1.4 ci/script.sh
mixlib-install-2.1.3 ci/script.sh
mixlib-install-2.1.2 ci/script.sh
mixlib-install-2.1.1 ci/script.sh