From df3bcaf143cfd256399d3f7f6b7e6e664d03a23c Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Fri, 6 Oct 2023 00:27:23 -0700 Subject: [PATCH] util: Make all runs "build" and "run" Change-Id: If9ecf467efa5c7118d34166953630e6c436c55a4 --- util/github-runners-vagrant/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/github-runners-vagrant/Vagrantfile b/util/github-runners-vagrant/Vagrantfile index 3446f703dd..7743c3e6a4 100644 --- a/util/github-runners-vagrant/Vagrantfile +++ b/util/github-runners-vagrant/Vagrantfile @@ -59,7 +59,7 @@ Vagrant.configure("2") do |config| runner.vm.provision "file", source: "./action-run.sh", destination: "/tmp/action-run.sh" runner.vm.provision :shell, privileged: false, inline: "cp /tmp/action-run.sh ." # Execute the actions-run.sh script on every boot. This configures the and starts the runner. - runner.vm.provision :shell, privileged: false, run: 'always', inline: "./action-run.sh #{PERSONAL_ACCESS_TOKEN} #{GITHUB_ORG} >> action-run.log 2>&1 &" + runner.vm.provision :shell, privileged: false, run: 'always', inline: "./action-run.sh #{PERSONAL_ACCESS_TOKEN} #{GITHUB_ORG} "run,build" >> action-run.log 2>&1 &" end end end