contrib/vagrant/Vagrantfile
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 11 Jun 2022 00:00:29 +0200
changeset 49362 76b4b36cd5d0
parent 43557 7fd16ddabaa0
permissions -rw-r--r--
spares: clarify some test about merging copies This new output clarify the important part out this merging : we want to be able to record the copy source even it is outside of the sparse profile.

# -*- mode: ruby -*-

Vagrant.configure('2') do |config|
  # Debian 10.1 x86_64 without configuration management software
  config.vm.box = "debian/buster64"
  config.vm.hostname = "tests"

  config.vm.define "tests" do |conf|
    conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh"
    conf.vm.provision :shell, path: "provision.sh"
    conf.vm.synced_folder "../..", "/hgshared"
  end
end