Sha256: 9b32f012a9ee62b7388d6939515d6fb7d21cec13ed2668fd5c2be7d99d72eec1

Contents?: true

Size: 1002 Bytes

Versions: 10

Compression:

Stored size: 1002 Bytes

Contents

#!/bin/bash

set -evx

# undo travis gem and bundler config
for ruby_env_var in _ORIGINAL_GEM_PATH \
                    BUNDLE_BIN_PATH \
                    BUNDLE_GEMFILE \
                    GEM_HOME \
                    GEM_PATH \
                    GEM_ROOT \
                    RUBYLIB \
                    RUBYOPT \
                    RUBY_ENGINE \
                    RUBY_ROOT \
                    RUBY_VERSION

do
  unset $ruby_env_var
done

# Don't run acceptance tests on forks. The decryption keys are not available.
if [ "${TRAVIS_REPO_SLUG}" = "chef/mixlib-install" ]; then

  # download terraform
  wget "https://releases.hashicorp.com/terraform/0.7.4/terraform_0.7.4_linux_amd64.zip"

   # inflate archive
   unzip terraform_0.7.4_linux_amd64.zip -d bin

   # decrypt pem
   openssl aes-256-cbc -K $encrypted_e2edbb28e76c_key -iv $encrypted_e2edbb28e76c_iv -in ci/es-infrastructure.pem.enc -out es-infrastructure.pem -d
   mkdir -p ~/.ssh
   mv es-infrastructure.pem ~/.ssh
fi

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mixlib-install-2.1.5 ci/before-script.sh
mixlib-install-2.1.4 ci/before-script.sh
mixlib-install-2.1.3 ci/before-script.sh
mixlib-install-2.1.2 ci/before-script.sh
mixlib-install-2.1.1 ci/before-script.sh
mixlib-install-2.1.0 ci/before-script.sh
mixlib-install-2.0.4 ci/before-script.sh
mixlib-install-2.0.3 ci/before-script.sh
mixlib-install-2.0.2 ci/before-script.sh
mixlib-install-2.0.1 ci/before-script.sh