From 0b267b2dc0790b4ca31a9ec1c3236f04728f1aab Mon Sep 17 00:00:00 2001 From: Felix Krull Date: Fri, 24 Jul 2020 15:22:16 +0200 Subject: [PATCH] Add Vagrantfile --- rust-bindings/rust/.gitignore | 1 + rust-bindings/rust/Vagrantfile | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 rust-bindings/rust/Vagrantfile diff --git a/rust-bindings/rust/.gitignore b/rust-bindings/rust/.gitignore index c9dc18fa..155a4e11 100644 --- a/rust-bindings/rust/.gitignore +++ b/rust-bindings/rust/.gitignore @@ -4,3 +4,4 @@ cargo sccache **/*.rs.bk Cargo.lock +.vagrant diff --git a/rust-bindings/rust/Vagrantfile b/rust-bindings/rust/Vagrantfile new file mode 100644 index 00000000..996bb981 --- /dev/null +++ b/rust-bindings/rust/Vagrantfile @@ -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