Skip to content

Commit 6cb877f

Browse files
committed
Add output section for Boost_DIR
1 parent 4a29cb8 commit 6cb877f

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/actions/install-boost/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ outputs:
1414
BOOST_ROOT:
1515
description: The location of the installed boost.
1616
value: ${{ steps.determine-root.outputs.BOOST_ROOT }}
17+
Boost_DIR:
18+
description: Location of cmake support for boost.
19+
value: ${{ steps.determine-root.outputs.Boost_DIR }}
1720
runs:
1821
using: composite
1922
steps:

.github/actions/sdk-release/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ runs:
100100
if: runner.os == 'Windows'
101101
shell: bash
102102
env:
103-
Boost_DIR: ${{ steps.install-openssl.outputs.Boost_DIR }}
103+
Boost_DIR: ${{ steps.install-boost.outputs.Boost_DIR }}
104104
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
105-
OPENSSL_ROOT_DIR: ${{ steps.install-boost.outputs.OPENSSL_ROOT_DIR }}
105+
OPENSSL_ROOT_DIR: ${{ steps.install-openssl.outputs.OPENSSL_ROOT_DIR }}
106106
run: ./scripts/build-release-windows.sh ${{ inputs.sdk_cmake_target }}
107107

108108
- name: Archive Release Windows - MSVC/x64/Static

.github/workflows/hello-apps.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
run: ./scripts/run-hello-apps.sh static hello-c-client hello-cpp-client hello-c-server hello-cpp-server
3535
env:
3636
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
37-
CMAKE_PREFIX_PATH: ${{ steps.install-boost.outputs.CMAKE_PREFIX_PATH }}
3837
Boost_DIR: ${{ steps.install-boost.outputs.Boost_DIR }}
3938

4039
- name: Dynamically Linked Hello Apps (C API only)

0 commit comments

Comments
 (0)