Sha256: c9362b657ed2a0b28b1779e474a42f3b41066cf9fc4b35919b35286e0562d976
Contents?: true
Size: 813 Bytes
Versions: 2
Compression:
Stored size: 813 Bytes
Contents
#!/bin/bash set -eu function cleanup { rm $FOG_RC } # Override default of ~/.fog and delete afterwards. export FOG_RC=$(mktemp /tmp/vcloud_fog_rc.XXXXXXXXXX) trap cleanup EXIT cat <<EOF >${FOG_RC} ${FOG_CREDENTIAL}: vcloud_director_host: '${API_HOST}' vcloud_director_username: '${API_USERNAME}' vcloud_director_password: '' EOF git clean -ffdx bundle install --path "${HOME}/bundles/${JOB_NAME}" bundle exec rake # Obtain the integration test parameters git clone git@github.gds:gds/vcloud-tools-testing-config.git mv vcloud-tools-testing-config/vcloud_tools_testing_config.yaml spec/integration/ rm -rf vcloud-tools-testing-config # Never log token to STDOUT. set +x eval $(printenv API_PASSWORD | bundle exec vcloud-login) trap "bundle exec vcloud-logout" EXIT bundle exec rake integration:all
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vcloud-launcher-0.7.0 | jenkins_tests.sh |
vcloud-launcher-0.6.0 | jenkins_tests.sh |