Sha256: 18549920e7d18cf035010d714f533f0623d94a5abb16141403a1881dc8824a08
Contents?: true
Size: 802 Bytes
Versions: 3
Compression:
Stored size: 802 Bytes
Contents
#!/bin/bash set -eu function cleanup { set +e bundle exec vcloud-logout rm $FOG_RC unset FOG_RC } 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 source ./rbenv_version.sh 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) bundle exec rake integration:all
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vcloud-launcher-2.1.1 | jenkins_tests.sh |
vcloud-launcher-2.1.0 | jenkins_tests.sh |
vcloud-launcher-2.0.0 | jenkins_tests.sh |