Fix strategy matrix outputs

This commit is contained in:
Bart Thomee
2025-07-27 12:27:59 -04:00
parent a6c63dbc0c
commit b3637549f3
3 changed files with 6 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ jobs:
architecture: ${{ needs.expose-env.outputs.strategy_matrix_architecture }}
os: ${{ needs.expose-env.outputs.strategy_matrix_os }}
build_type: ${{ needs.expose-env.outputs.strategy_matrix_build_type }}
cmake_args: ${{ needs.expose-env.outputs.strategy_cmake_args }}
cmake_args: ${{ needs.expose-env.outputs.strategy_matrix_cmake_args }}
# Install and cache the dependencies using various configurations.
install-dependencies:

View File

@@ -116,7 +116,7 @@ jobs:
architecture: ${{ needs.expose-env.outputs.strategy_matrix_architecture }}
os: ${{ needs.expose-env.outputs.strategy_matrix_os }}
build_type: ${{ needs.expose-env.outputs.strategy_matrix_build_type }}
cmake_args: ${{ needs.expose-env.outputs.strategy_cmake_args }}
cmake_args: ${{ needs.expose-env.outputs.strategy_matrix_cmake_args }}
# Install and cache the dependencies using various configurations.
install-dependencies:

View File

@@ -28,10 +28,10 @@ on:
# generate-matrix:
# uses: ./.github/workflows/generate-matrix.yml
# with:
# architecture: ${{ env.STRATEGY_MATRIX_ARCHITECTURE }}
# os: ${{ env.STRATEGY_MATRIX_OS }}
# build_type: ${{ env.STRATEGY_MATRIX_BUILD_TYPE }}
# cmake_args: ${{ env.STRATEGY_MATRIX_CMAKE_ARGS }}
# architecture: [...]
# os: [...]
# build_type: [...]
# cmake_args: [...]
# ```
# * This workflow can be used as follows:
# ```yaml