Add Vagrantfile

This commit is contained in:
Felix Krull 2020-07-24 15:22:16 +02:00 committed by Colin Walters
parent b082362df4
commit 0b267b2dc0
2 changed files with 11 additions and 0 deletions

View File

@ -4,3 +4,4 @@ cargo
sccache
**/*.rs.bk
Cargo.lock
.vagrant

10
rust-bindings/rust/Vagrantfile vendored Normal file
View File

@ -0,0 +1,10 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "bento/fedora-latest"
config.vm.provision "shell", inline: <<-SHELL
dnf install -y cargo curl make ostree-devel podman rust
echo "cd /vagrant" >> ~vagrant/.bash_profile
SHELL
end