Skip to content

Commit

Permalink
fix(ci): add curl to Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrizhu committed Nov 18, 2023
1 parent bd41b4c commit 3f914cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Vagrant.configure("2") do |config|
debian.vm.provision "file", source: "./", destination: "/home/vagrant/try"
debian.vm.provision "shell", privileged: false, inline: "
sudo apt-get update
sudo apt-get install -y git expect
sudo apt-get install -y git expect curl
sudo chown -R vagrant:vagrant try
cd try
scripts/run_tests.sh
Expand Down Expand Up @@ -39,7 +39,7 @@ Vagrant.configure("2") do |config|
debianlvm.vm.provision "file", source: "./", destination: "/home/vagrant/try"
debianlvm.vm.provision "shell", privileged: false, inline: "
sudo apt-get update
sudo apt-get install -y git expect lvm2 mergerfs
sudo apt-get install -y git expect lvm2 mergerfs curl
# Create an image for the lvm disk
sudo fallocate -l 2G /root/lvm_disk.img
Expand Down Expand Up @@ -74,7 +74,7 @@ Vagrant.configure("2") do |config|
rocky.vm.box = "generic/rocky9"
rocky.vm.provision "file", source: "./", destination: "/home/vagrant/try"
rocky.vm.provision "shell", privileged: false, inline: "
sudo yum install -y git expect
sudo yum install -y git expect curl
sudo chown -R vagrant:vagrant try
cd try
TRY_TOP=$(pwd) scripts/run_tests.sh
Expand All @@ -86,7 +86,7 @@ Vagrant.configure("2") do |config|
fedora.vm.box = "generic/fedora33"
fedora.vm.provision "file", source: "./", destination: "/home/vagrant/try"
fedora.vm.provision "shell", privileged: false, inline: "
sudo yum install -y git expect
sudo yum install -y git expect curl
sudo chown -R vagrant:vagrant try
cd try
TRY_TOP=$(pwd) scripts/run_tests.sh
Expand Down

0 comments on commit 3f914cb

Please sign in to comment.