From b3637549f33225a80d3a9c29a07797fa1fcb4eb9 Mon Sep 17 00:00:00 2001 From: Bart Thomee <11445373+bthomee@users.noreply.github.com> Date: Sun, 27 Jul 2025 12:27:59 -0400 Subject: [PATCH] Fix strategy matrix outputs --- .github/workflows/build-debian.yml | 2 +- .github/workflows/build-rhel.yml | 2 +- .github/workflows/generate-matrix.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-debian.yml b/.github/workflows/build-debian.yml index fe391fdcd0..28b657fdd5 100644 --- a/.github/workflows/build-debian.yml +++ b/.github/workflows/build-debian.yml @@ -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: diff --git a/.github/workflows/build-rhel.yml b/.github/workflows/build-rhel.yml index 40775b2f3e..e40203dee1 100644 --- a/.github/workflows/build-rhel.yml +++ b/.github/workflows/build-rhel.yml @@ -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: diff --git a/.github/workflows/generate-matrix.yml b/.github/workflows/generate-matrix.yml index 97524d0543..574bff5986 100644 --- a/.github/workflows/generate-matrix.yml +++ b/.github/workflows/generate-matrix.yml @@ -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