Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Nov 13, 2024
1 parent 004afc7 commit 1b97bc9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:

- name: Construct CMake command and save it to environment
run: |
CMAKE_COMMAND="cmake -B _build -S . \
-DCMAKE_INSTALL_PREFIX=_install \
CMAKE_COMMAND="cmake -B . -S .. \
-DCMAKE_INSTALL_PREFIX=../_install \
-DCMAKE_BUILD_TYPE=${{ inputs.build-type }} \
-DOPENEXR_CXX_STANDARD=${{ inputs.cxx-standard }} \
-DBUILD_SHARED_LIBS=${{ inputs.BUILD_SHARED_LIBS }} \
Expand All @@ -99,17 +99,20 @@ jobs:
-DOPENEXR_RUN_FUZZ_TESTS='OFF' \
-DCMAKE_VERBOSE_MAKEFILE:BOOL='ON'"
echo "CMAKE_COMMAND=$CMAKE_COMMAND" >> $GITHUB_ENV
working-directory: _build
shell: bash

- name: Configure
run: $CMAKE_COMMAND
working-directory: _build
shell: bash

- name: Build
run: |
cmake --build _build \
cmake --build . \
--target install \
--config ${{ inputs.build-type }}
working-directory: _build
shell: bash

- name: Test
Expand Down

0 comments on commit 1b97bc9

Please sign in to comment.