Mercurial > minori
comparison dep/fmt/support/Vagrantfile @ 343:1faa72660932
*: transfer back to cmake from autotools
autotools just made lots of things more complicated than
they should have and many things broke (i.e. translations)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 20 Jun 2024 05:56:06 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
342:adb79bdde329 | 343:1faa72660932 |
---|---|
1 # -*- mode: ruby -*- | |
2 # vi: set ft=ruby : | |
3 | |
4 # A vagrant config for testing against gcc-4.8. | |
5 Vagrant.configure("2") do |config| | |
6 config.vm.box = "ubuntu/xenial64" | |
7 config.disksize.size = '15GB' | |
8 | |
9 config.vm.provider "virtualbox" do |vb| | |
10 vb.memory = "4096" | |
11 end | |
12 | |
13 config.vm.provision "shell", inline: <<-SHELL | |
14 apt-get update | |
15 apt-get install -y g++ make wget git | |
16 wget -q https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-Linux-x86_64.tar.gz | |
17 tar xzf cmake-3.26.0-Linux-x86_64.tar.gz | |
18 ln -s `pwd`/cmake-3.26.0-Linux-x86_64/bin/cmake /usr/local/bin | |
19 SHELL | |
20 end |