aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/actions/run-example
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/actions/run-example-boost/action.yml45
-rw-r--r--.github/actions/run-example/action.yml28
2 files changed, 73 insertions, 0 deletions
diff --git a/.github/actions/run-example-boost/action.yml b/.github/actions/run-example-boost/action.yml
new file mode 100644
index 0000000..0dd9f44
--- /dev/null
+++ b/.github/actions/run-example-boost/action.yml
@@ -0,0 +1,45 @@
+name: Run examples/boost
+description: Run examples/boost
+inputs:
+ path:
+ description: Installation directory
+ required: true
+runs:
+ using: composite
+ steps:
+ - run: |
+ New-Variable path -Value '${{ inputs.path }}' -Option Constant
+
+ if ($env:CI_HOST_LINUX -and -not $env:CI_TARGET_LINUX) {
+ echo 'Not going to do that on Linux/MinGW'
+ exit
+ }
+
+ $relative_test = 'test.txt'
+ $absolute_test = Join-Path (Get-Location).Path 'test.txt'
+
+ $exe_path = (Join-Path $path 'bin' 'foo')
+ if (-not $env:CI_TARGET_CYGWIN) {
+ $exe_path += $env:CI_EXE_EXT
+ }
+
+ $argv0 = $exe_path
+ if ($env:CI_TARGET_CYGWIN) {
+ # Apparently, Cygwin programs convert argv[0] when executing native
+ # programs or being executed by them.
+ $argv0 = cygpath.exe -ua $argv0
+ }
+
+ $actual = & $exe_path $relative_test
+
+ echo 'Actual output:'
+ echo $actual
+
+ $expected = $argv0,$absolute_test
+ echo 'Expected output:'
+ echo $expected
+
+ if (Compare-Object $actual $expected -CaseSensitive) {
+ throw 'Unexpected output'
+ }
+ shell: pwsh
diff --git a/.github/actions/run-example/action.yml b/.github/actions/run-example/action.yml
new file mode 100644
index 0000000..5300ab9
--- /dev/null
+++ b/.github/actions/run-example/action.yml
@@ -0,0 +1,28 @@
+name: Run example project
+description: Run example project
+inputs:
+ path:
+ description: Installation directory
+ required: true
+runs:
+ using: composite
+ steps:
+ - run: |
+ New-Variable path -Value '${{ inputs.path }}' -Option Constant
+
+ if ($env:CI_HOST_LINUX -and -not $env:CI_TARGET_LINUX) {
+ echo 'Not going to do that on Linux/MinGW'
+ exit
+ }
+
+ if ($env:CI_TARGET_LINUX) {
+ $lib = Join-Path $path 'lib'
+ if (Test-Path $lib) {
+ $lib = Resolve-Path $lib
+ $env:LD_LIBRARY_PATH = $lib
+ }
+ }
+ $exe_path = (Join-Path $path 'bin' 'foo') + $env:CI_EXE_EXT
+ echo "Executable path: $exe_path"
+ & $exe_path
+ shell: pwsh