-
Notifications
You must be signed in to change notification settings - Fork 55
/
Vagrantfile
57 lines (50 loc) · 2.16 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- mode: ruby -*-
# vi: set ft=ruby :
$VM_MEMORY = (ENV['VM_MEMORY'] || 4096)
$VM_CPUS = (ENV['VM_CPUS'] || 4)
# Requires `vagrant plugin install vagrant-disksize`
$VM_DISK = (ENV['VM_DISK'] || "100GB")
$GO_VERSION = (ENV['GO_VERSION'] || "1.22.0")
## Some inline scripts for installation
$go_install = <<-'SCRIPT'
# Install golang
GO_VERSION=$1
curl -O https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz && \
rm -rf /usr/local/go \
&& tar -C /usr/local -xzf go$GO_VERSION.linux-amd64.tar.gz \
&& rm -rf go$GO_VERSION.linux-amd64.tar.gz && \
echo 'export PATH=$PATH:/usr/local/go/bin:/home/vagrant/go/bin' >> /home/vagrant/.bashrc
SCRIPT
# This is same as what mentioned in Docker.builder.tests
$dependencies = <<-'SCRIPT'
apt-get update && \
apt-get upgrade -y --no-install-recommends && \
apt-get install -y --no-install-recommends \
ca-certificates \
gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-dev-arm64-cross binutils-aarch64-linux-gnu \
gcc-x86-64-linux-gnu g++-x86-64-linux-gnu libc6-dev-amd64-cross binutils-x86-64-linux-gnu \
libc6-dev \
autoconf automake cmake coreutils curl git libtool make ninja-build patch patchelf \
python3 python-is-python3 unzip virtualenv wget zip \
software-properties-common && \
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc && \
apt-add-repository -y "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main" && \
apt-get update && \
apt-get install -y --no-install-recommends \
clang-17 clang-tools-17 lldb-17 lld-17 clang-format-17 libc++-17-dev libc++abi-17-dev && \
apt-get purge --auto-remove && \
apt-get clean
SCRIPT
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/jammy64"
config.disksize.size = $VM_DISK
config.vm.provider "virtualbox" do |vb|
# Customize the amount of memory on the VM:
vb.memory = $VM_MEMORY
vb.cpus = $VM_CPUS
end
config.vm.synced_folder ".", "/home/vagrant/proxy"
config.vm.provision "docker"
config.vm.provision "shell", inline: $go_install, args: $GO_VERSION
config.vm.provision "shell", inline: $dependencies
end