File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,15 @@ deploy_sourcegraph() {
1313 cd $( dirname " ${BASH_SOURCE[0]} " ) /..
1414 # Deploy sourcegraph
1515 if [[ " $TEST_TYPE " == " pure-docker-test" ]]; then
16+ # Fix plugin: https://github.com/hashicorp/vagrant/issues/13550
17+ 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
1618 ./test/volume-config.sh
1719 timeout 600s ./pure-docker/deploy.sh
1820 expect_containers=" 23"
1921 elif [[ " $TEST_TYPE " == " docker-compose-test" ]]; then
20- docker-compose --file docker-compose/docker-compose.yaml up -d -t 600
22+ # Fix plugin: https://github.com/hashicorp/vagrant/issues/13550
23+ 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
24+ docker-compose --file docker-compose/docker-compose.yaml up -d -t 600
2125 expect_containers=" 25"
2226 fi
2327
You can’t perform that action at this time.
0 commit comments