Skip to content

Commit

Permalink
update .github CI to latest trial 1
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarson3 committed Jan 4, 2024
1 parent da2a4f9 commit 10cae06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-raja/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
steps:
- name: Install RAJA
run: |
git clone --single-branch --branch v0.13.0 --depth 1 ${{ inputs.raja-repo }} ${{ inputs.raja-dir }};
git clone --single-branch --branch v2022.10.5 --depth 1 ${{ inputs.raja-repo }} ${{ inputs.raja-dir }};
cd ${{ inputs.raja-dir }};
git submodule init;
git submodule update;
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
# Note the SNLS top dir is no longer where SNLS's source is located within ecmech
# rather it's the top directory of ecmech.
env:
HYPRE_ARCHIVE: v2.18.2.tar.gz
HYPRE_ARCHIVE: v2.26.0.tar.gz
HYPRE_TOP_DIR: hypre-2.18.2
METIS_ARCHIVE: metis-5.1.0.tar.gz
METIS_TOP_DIR: metis-5.1.0
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ env.RAJA_TOP_DIR }}
key: ${{ runner.os }}-build-${{ env.RAJA_TOP_DIR }}-v2
key: ${{ runner.os }}-build-${{ env.RAJA_TOP_DIR }}-v2.01

- name: get raja
if: matrix.mpi == 'parallel' && steps.raja-cache.outputs.cache-hit != 'true'
Expand All @@ -87,7 +87,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ env.ECMECH_TOP_DIR }}
key: ${{ runner.os }}-build-${{ env.ECMECH_TOP_DIR }}-v2
key: ${{ runner.os }}-build-${{ env.ECMECH_TOP_DIR }}-v2.01

- name: get ecmech
if: matrix.mpi == 'parallel' && steps.ecmech-cache.outputs.cache-hit != 'true'
Expand All @@ -104,7 +104,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ env.HYPRE_TOP_DIR }}
key: ${{ runner.os }}-build-${{ env.HYPRE_TOP_DIR }}-v2
key: ${{ runner.os }}-build-${{ env.HYPRE_TOP_DIR }}-v2.01

- name: get hypre
if: matrix.mpi == 'parallel' && steps.hypre-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ env.MFEM_TOP_DIR }}
key: ${{ runner.os }}-build-${{ env.MFEM_TOP_DIR }}-v2.02
key: ${{ runner.os }}-build-${{ env.MFEM_TOP_DIR }}-v2.03

- name: install mfem
if: matrix.mpi == 'parallel' && steps.mfem-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 10cae06

Please sign in to comment.