1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# A vagrant configuration file for running tests on BSD-like machines
#
# Note that this was originally intended to later be used to run tests on
# Travis, but it didn't work out. Regardless this has stuck around! You can run
# tests in FreeBSD via:
#
# git clone https://github.com/alexcrichton/libc
# cd libc/ci
# vagrant up freebsd
# vagrant ssh freebsd
# ...
# cd /vagrant/libc-test
# cargo run
#
# And "that's it"! You look up instructions on Vagrant's website for how to
# install vagrant.
Vagrant.configure(2) do
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
config.vm.synced_folder ,
config.vm.define :freebsd do
bsd.vm.box =
bsd.vm.provision :shell, inline:
bsd.vm.provider do
vb.memory =
end
end
config.vm.define :openbsd do
bsd.vm.box =
bsd.vm.provider do
vb.memory =
end
end
end