Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Upgrade to FreeBSD 12.4 and 13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Sep 25, 2023
1 parent 9131e36 commit 09512df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
matrix:
box:
- fbsd_13_1
- fbsd_12_3
- fbsd_13_2
- fbsd_12_4
steps:
- name: Install Vagrant
run: brew install vagrant
Expand Down
10 changes: 4 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
Vagrant.configure("2") do |config|
config.disksize.size = "16GB"

config.vm.define "fbsd_13_1" do |c|
c.vm.box = "freebsd/FreeBSD-13.1-RELEASE"
config.vm.define "fbsd_13_2" do |c|
c.vm.box = "freebsd/FreeBSD-13.2-RELEASE"
end

config.vm.define "fbsd_12_3" do |c|
c.vm.box = "freebsd/FreeBSD-12.3-STABLE"
# Workaround for 404 error on 2022.09.30
c.vm.box_version = "2022.09.23"
config.vm.define "fbsd_12_4" do |c|
c.vm.box = "freebsd/FreeBSD-12.4-STABLE"
end

config.vm.synced_folder ".", "/vagrant", disabled: true
Expand Down

0 comments on commit 09512df

Please sign in to comment.