From 0282c2b54f79fa9063e03443369adfe1bc331eaf Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 4 May 2021 09:30:26 +0300 Subject: workflows: add run_foo.ps1, compact YAML --- .ci/run_foo.ps1 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .ci/run_foo.ps1 (limited to '.ci') diff --git a/.ci/run_foo.ps1 b/.ci/run_foo.ps1 new file mode 100644 index 0000000..578911f --- /dev/null +++ b/.ci/run_foo.ps1 @@ -0,0 +1,24 @@ +param( + [Parameter(Mandatory=$true)] + [string] $FooPath +) + +$foo_path = [System.IO.Path]::GetFullPath($FooPath) +if ($IsWindows) { + $foo_path += '.exe' +} + +$relative = 'test.txt' +$absolute = Join-Path (Get-Location).Path $relative + +$actual = & $foo_path $relative +echo 'Actual output:' +echo $actual + +$expected = $foo_path,$absolute +echo 'Expected output:' +echo $expected + +if (Compare-Object $actual $expected -CaseSensitive) { + throw 'Unexpected output' +} -- cgit v1.2.3