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

Commit

Permalink
Upgrade to 12.3 and 13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
acj committed Jul 3, 2022
1 parent ea1bab3 commit 84850f0
Show file tree
Hide file tree
Showing 2 changed files with 8 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_0
- fbsd_12_2
- fbsd_13_1
- fbsd_12_3
steps:
- name: Install Vagrant
run: brew install vagrant
Expand Down
12 changes: 6 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Vagrant.configure("2") do |config|
config.vm.define "fbsd_13_0" do |fbsd_13_0|
fbsd_13_0.vm.box = "freebsd/FreeBSD-13.0-RELEASE"
config.disksize.size = "16GB"
config.disksize.size = "16GB"

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

config.vm.define "fbsd_12_2" do |fbsd_12_2|
fbsd_12_2.vm.box = "freebsd/FreeBSD-12.2-STABLE"
config.disksize.size = "16GB"
config.vm.define "fbsd_12_3" do |c|
c.vm.box = "freebsd/FreeBSD-12.3-STABLE"
end

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

0 comments on commit 84850f0

Please sign in to comment.