Add bash wrapper for vpnruntime guard script
This commit is contained in:
@@ -16,6 +16,12 @@ Windows `cmd` wrapper:
|
||||
scripts\smoke\run-vpnruntime-ci-guards.cmd
|
||||
```
|
||||
|
||||
Linux/macOS/WSL wrapper:
|
||||
|
||||
```bash
|
||||
./scripts/smoke/run-vpnruntime-ci-guards.sh
|
||||
```
|
||||
|
||||
## Verification matrix
|
||||
|
||||
### Locally proven in this repository work
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
|
||||
|
||||
cd "${REPO_ROOT}"
|
||||
pwsh -NoProfile -ExecutionPolicy Bypass -File "scripts/smoke/run-vpnruntime-ci-guards.ps1" -AntiFlakeCount 20 -TargetedCount 50
|
||||
|
||||
Reference in New Issue
Block a user