-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(ci): travis no longer runs configure.sh
Also: added a Vagrantfile that can be used to bootstrap a HyperV Ubuntu 18 VM and execute the configure.sh script. This produces a VM that is ready to have BIF cloned to it and the tools/ci.sh executed. Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.vagrant | ||
.DS_Store | ||
node_modules/ | ||
docs/main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
Vagrant.configure("2") do |config| | ||
config.vm.box = "generic/ubuntu1804" | ||
config.vm.provider "hyperv" | ||
|
||
config.vm.network "public_network", bridge: "Default Switch" | ||
|
||
config.vm.provider :hyperv do |hyperv| | ||
hyperv.vmname = "BIF-CI-Box" | ||
hyperv.maxmemory = 16384 | ||
hyperv.cpus = 4 | ||
end | ||
|
||
config.vm.provision "shell", path: "tools/configure.sh" | ||
|
||
end |