Skip to content

Commit

Permalink
workflow: trying to fix yml issue with env context
Browse files Browse the repository at this point in the history
Signed-off-by: Luc Berger-Vergiat <lberge@sandia.gov>
  • Loading branch information
lucbv committed Oct 21, 2024
1 parent 9b70ea6 commit ff099ed
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/at2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,26 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
KOKKOS_VERSION: 4.4.01

jobs:
env:
kokkos_version: 4.4.01
mi210:
uses: ./.github/workflows/mi210.yml
with:
kokkos_version: ${{ env.KOKKOS_VERSION }}
kokkos_version: ${{ env.kokkos_version }}
h100:
uses: ./.github/workflows/h100.yml
with:
kokkos_version: ${{ env.KOKKOS_VERSION }}
kokkos_version: ${{ env.kokkos_version }}
bdw:
uses: ./.github/workflows/bdw.yml
with:
kokkos_version: ${{ env.KOKKOS_VERSION }}
kokkos_version: ${{ env.kokkos_version }}
spr:
uses: ./.github/workflows/spr.yml
with:
kokkos_version: ${{ env.KOKKOS_VERSION }}
kokkos_version: ${{ env.kokkos_version }}
volta70:
uses: ./.github/workflows/volta70.yml
with:
kokkos_version: ${{ env.KOKKOS_VERSION }}
kokkos_version: ${{ env.kokkos_version }}

0 comments on commit ff099ed

Please sign in to comment.