Use vagrant-spec from hashicorp org

This commit is contained in:
sophia 2022-02-04 11:45:34 -06:00 committed by Paul Hinze
parent 72326d6758
commit 9e7ece840a
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
2 changed files with 2 additions and 3 deletions

View File

@ -50,9 +50,8 @@ jobs:
- name: Get vagrant-spec repo
uses: actions/checkout@v2
with:
repository: 'soapy1/vagrant-spec'
repository: 'hashicorp/vagrant-spec'
path: vagrant-spec
ref: use-full-vagrant-path-if-executable
- name: Install and run vagrant-spec
run: |
pushd vagrant-spec

View File

@ -5,7 +5,7 @@ Vagrant::Spec::Acceptance.configure do |c|
c.skeleton_paths << File.expand_path("../test/acceptance/skeletons", __FILE__)
# Allow for slow setup to still pass
c.assert_retries = 15
c.vagrant_path = ENV["VAGRANT_PATH"]
c.vagrant_path = ENV.fetch("VAGRANT_PATH", "vagrant")
c.provider "virtualbox",
box: ENV["VAGRANT_SPEC_BOX"],
contexts: ["provider-context/virtualbox"]