aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/actions/check-boost
diff options
context:
space:
mode:
Diffstat (limited to '.github/actions/check-boost')
-rw-r--r--.github/actions/check-boost/action.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/actions/check-boost/action.yml b/.github/actions/check-boost/action.yml
new file mode 100644
index 0000000..e7c471a
--- /dev/null
+++ b/.github/actions/check-boost/action.yml
@@ -0,0 +1,13 @@
+name: Check that Boost was downloaded
+description: Check that Boost was downloaded
+inputs:
+ root:
+ description: Root Boost directory
+ required: true
+runs:
+ using: composite
+ steps:
+ - run: |
+ $config_path = Join-Path '${{ inputs.root }}' boost config.hpp
+ $(Test-Path $config_path -Type Leaf) -or $(throw "Couldn't find config.hpp at: $config_path")
+ shell: pwsh