Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the Vagrantfile to use the Ubuntu LTS 22.04 Jammy Jellyfish #95

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@

Vagrant.configure("2") do |config|
# amd64
config.vm.box = "generic/ubuntu2110"
config.vm.box = "generic/ubuntu2204"
# arm64
# config.vm.box = "nickschuetz/ubuntu-21.10-arm64"
config.vm.define :impish
config.vm.hostname = "impish"
# config.vm.box = "jharoian3/ubuntu-22.04-arm64"
config.vm.define :jammy
config.vm.hostname = "jammy"
config.vm.synced_folder ".", "/source"
config.vm.provision "shell", inline: <<-SHELL
# fix DNS problem
rm -f /etc/resolv.conf
ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf
# install llvm:
export DEBIAN_FRONTEND=noninteractive
export LLVM_VERSION=13
Expand Down