File tree Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Expand file tree Collapse file tree 1 file changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -13,23 +13,20 @@ cleanup() {
1313}
1414
1515echo --- " :vagrant: installing plugins"
16- plugins=(" vagrant-google --plugin-version '2.7.0'" vagrant-env vagrant-scp)
17- for i in " ${plugins[@]} " ; do
18- vagrant plugin list --no-tty
19- if ! vagrant plugin list --no-tty | grep " $i " ; then
20- vagrant plugin install " $i "
21- fi
22- done
16+ vagrant --version
17+ vagrant plugin install vagrant-google --plugin-version ' 2.7.0'
18+ vagrant plugin install vagrant-env
19+ vagrant plugin install vagrant-scp
2320
2421trap cleanup EXIT
2522
26- echo --- " :bug: fixing dotenv"
27- echo " see fix: https://github.com/hashicorp/vagrant/issues/13550"
28- sed -i -e ' s/exists?/exist?/g' /var/lib/buildkite-agent/.vagrant.d/gems/3.3.8/gems/dotenv-0.11.1/lib/dotenv.rb
23+ # echo --- ":bug: fixing dotenv"
24+ # echo "see fix: https://github.com/hashicorp/vagrant/issues/13550"
25+ # sed -i -e 's/exists?/exist?/g' /var/lib/buildkite-agent/.vagrant.d/gems/3.3.8/gems/dotenv-0.11.1/lib/dotenv.rb
2926
3027echo --- " :lock: builder account key"
3128KEY_PATH=" /tmp/e2e-builder.json"
32- if [ ! -f ${KEY_PATH} ];
29+ if [ ! -f ${KEY_PATH} ]; then
3330 gcloud secrets versions access latest --secret=e2e-builder-sa-key --quiet --project=sourcegraph-ci > " ${KEY_PATH} "
3431fi
3532export GOOGLE_JSON_KEY_LOCATION=" ${KEY_PATH} "
You can’t perform that action at this time.
0 commit comments