From 134f97ab0d999e0655c3189244cb64228ceb7e0f Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Tue, 8 Aug 2017 16:08:19 -0500 Subject: Create a Run.ps1 script It was created the Run.ps1 helper script. Windows users can create VMs through this script without having to setup environment variables Change-Id: I5e8e25d3991cbea3d753afad370c07075ba9cb0e Signed-off-by: Victor Morales --- bootstrap/vagrant-onap/CONTRIBUTING.md | 5 +++++ bootstrap/vagrant-onap/tools/Run.ps1 | 21 +++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 bootstrap/vagrant-onap/tools/Run.ps1 (limited to 'bootstrap') diff --git a/bootstrap/vagrant-onap/CONTRIBUTING.md b/bootstrap/vagrant-onap/CONTRIBUTING.md index e473927e4..ab7f6ba1d 100644 --- a/bootstrap/vagrant-onap/CONTRIBUTING.md +++ b/bootstrap/vagrant-onap/CONTRIBUTING.md @@ -17,6 +17,11 @@ command: $ ./tools/run.sh testing [test_suite] [function] +or using PowerShell + + PS C:\> Set-ExecutionPolicy Bypass -Scope CurrentUser + PS C:\> .\tools\Run.ps1 [test_suite] [function] + Examples -------- diff --git a/bootstrap/vagrant-onap/tools/Run.ps1 b/bootstrap/vagrant-onap/tools/Run.ps1 new file mode 100644 index 000000000..55adc11c9 --- /dev/null +++ b/bootstrap/vagrant-onap/tools/Run.ps1 @@ -0,0 +1,21 @@ +switch ($args[0]) + { + "all_in_one" { $env:DEPLOY_MODE="all-in-one" } + { @("dns", "mr", "sdc", "aai", "mso", "robot", "vid", "sdnc", "portal", "dcae", "policy", "appc") -contains $_ } { $env:DEPLOY_MODE="individual" } + "testing" + { + $env:DEPLOY_MODE="testing" + $test_suite="*" + if (!$args[1]) { $test_suite=$args[1] } + $env:TEST_SUITE=$test_suite + $test_case="*" + if (!$args[2]) { $test_case=$args[2] } + $env:TEST_CASE=$test_case + + rm ./opt/ -Recurse -Force + rm $HOME/.m2/ -Recurse -Force + } + } + +vagrant destroy -f $args[0] +vagrant up $args[0] -- cgit 1.2.3-korg