Sha256: 32e9bee250dc98c585d6ef6b4c5b85427042c57adcf940460dcb354c565c69dc
Contents?: true
Size: 690 Bytes
Versions: 59
Compression:
Stored size: 690 Bytes
Contents
#!/bin/sh # set custom qa cache key because upstream template by default installs gitlab-qa from rubygems and uses cache key # based on globally defined gitlab-qa version # # UPDATE_QA_CACHE needs to be passed to included child pipeline because e2e specs run on separate runners which don't share # same infrastructure and this variable allows to populate cache for e2e spec specific runners qa_cache_key="${RUBY_VERSION}-$(md5sum Gemfile.lock | awk '{ print $1 }')" echo "Saving environment variables for package-and-test trigger" echo "GITLAB_QA_CACHE_KEY=$qa_cache_key" > $BUILD_ENV echo "UPDATE_QA_CACHE=$UPDATE_QA_CACHE" >> $BUILD_ENV echo "Created $BUILD_ENV file:" cat $BUILD_ENV
Version data entries
59 entries across 59 versions & 1 rubygems