Skip to content

Commit

Permalink
chore: Test on FreeBSD 14
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Nov 27, 2023
1 parent 4d8405f commit 6effb0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ test-docker:

.PHONY: test-vagrant
test-vagrant:
( cd assets/vagrant && ./test.sh freebsd13 )
( cd assets/vagrant && ./test.sh freebsd14 )

.PHONY: coverage-html
coverage-html: coverage
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Vagrant.configure("2") do |config|
config.vm.box = "generic/freebsd13"
config.vm.define :freebsd13
config.vm.hostname = "freebsd13"
config.vm.box = "generic/freebsd14"
config.vm.define :freebsd14
config.vm.hostname = "freebsd14"
config.vm.synced_folder ".", "/chezmoi", type: "rsync"
config.vm.provision "shell", inline: <<-SHELL
pkg install --quiet --yes age git gnupg go zip
Expand All @@ -13,5 +13,5 @@ Vagrant.configure("2") do |config|
echo GITHUB_TOKEN=#{ENV['GITHUB_TOKEN']} >> /home/vagrant/.bash_profile
echo export CHEZMOI_GITHUB_ACCESS_TOKEN CHEZMOI_GITHUB_TOKEN GITHUB_ACCESS_TOKEN GITHUB_TOKEN >> /home/vagrant/.bash_profile
SHELL
config.vm.provision "file", source: "assets/vagrant/freebsd13.test-chezmoi.sh", destination: "test-chezmoi.sh"
config.vm.provision "file", source: "assets/vagrant/freebsd14.test-chezmoi.sh", destination: "test-chezmoi.sh"
end
File renamed without changes.

0 comments on commit 6effb0a

Please sign in to comment.