From 9211e839ddce57f22cd3ec866bfde37262b3214c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 18 Apr 2021 09:05:07 +0300 Subject: workflows/test: test custom Boost directory --- .github/actions/check-boost/action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/actions/check-boost/action.yml (limited to '.github/actions/check-boost') 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 -- cgit v1.2.3