Skip to content

Commit

Permalink
workflow: Actually using the KOKKOS_VERSION variable
Browse files Browse the repository at this point in the history
Currently the version is still hardcoded for each job in at2.yml
Now switching to use the control variable so all the jobs can be
in sync and switched at once for easier maintenance.

Signed-off-by: Luc Berger-Vergiat <lberge@sandia.gov>
  • Loading branch information
lucbv committed Oct 21, 2024
1 parent 5ea5c3a commit 9b70ea6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/at2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ jobs:
mi210:
uses: ./.github/workflows/mi210.yml
with:
kokkos_version: 4.4.01
kokkos_version: ${{ env.KOKKOS_VERSION }}
h100:
uses: ./.github/workflows/h100.yml
with:
kokkos_version: 4.4.01
kokkos_version: ${{ env.KOKKOS_VERSION }}
bdw:
uses: ./.github/workflows/bdw.yml
with:
kokkos_version: 4.4.01
kokkos_version: ${{ env.KOKKOS_VERSION }}
spr:
uses: ./.github/workflows/spr.yml
with:
kokkos_version: 4.4.01
kokkos_version: ${{ env.KOKKOS_VERSION }}
volta70:
uses: ./.github/workflows/volta70.yml
with:
kokkos_version: 4.4.01
kokkos_version: ${{ env.KOKKOS_VERSION }}

0 comments on commit 9b70ea6

Please sign in to comment.