contrib/vagrant/Vagrantfile
author Kyle Lippincott <spectral@google.com>
Fri, 13 Mar 2020 19:25:37 -0700
changeset 44573 529cb23155bc
parent 43557 7fd16ddabaa0
permissions -rw-r--r--
tests: make test-doctest.t module list match reality Differential Revision: https://phab.mercurial-scm.org/D8280

# -*- 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