Skip to content

Commit 3809ec5

Browse files
committed
CI: FreeBSD: use Go 1.22
Signed-off-by: Akihiro Suda <[email protected]>
1 parent b668da5 commit 3809ec5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: Vagrantfile.freebsd

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ Vagrant.configure("2") do |config|
3636
sh.inline = <<~SHELL
3737
#!/usr/bin/env bash
3838
set -eux -o pipefail
39-
pkg install -y go containerd runj
39+
# `pkg install go` still installs Go 1.20 (March 2024)
40+
pkg install -y go122 containerd runj
41+
ln -s go122 /usr/local/bin/go
4042
cd /vagrant
4143
go install ./cmd/nerdctl
4244
SHELL

0 commit comments

Comments
 (0)