1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-04-19 00:04:26 +02:00

fix initial provisions always running

This commit is contained in:
Yashodhan Joshi 2022-11-22 15:14:26 +05:30
parent 737c09afe2
commit e3bf6988d4
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ clean:
./scripts/clean.sh $(ROOT)
containerd-test:
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant up --provision-with bootstrap | true
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant up
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant provision --provision-with test

View File

@ -7,7 +7,7 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 2
v.cpus = 4
end
config.vm.provision "bootstrap", type: "shell" do |s|
@ -50,7 +50,7 @@ Vagrant.configure("2") do |config|
cd /root/go/src/github.com/containerd/containerd/
export PATH=$PATH:$HOME/.cargo/bin:/usr/local/go/bin
make TEST_RUNTIME=io.containerd.runc.v2 TESTFLAGS="-timeout 120m" integration | tee result.txt
grep "FAIL: " result.txt
grep "FAIL: " result.txt || true
SHELL
end
end