-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0007c0
commit 85f0153
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ jobs: | |
id: cache-cdeps | ||
uses: actions/cache@v4 | ||
with: | ||
path: $HOME/cdeps | ||
path: cdeps-src | ||
key: ${{ runner.os }}-${{ env.CDEPS_VERSION }}.cdeps | ||
|
||
- name: checkout CDEPS | ||
|
@@ -82,6 +82,10 @@ jobs: | |
repository: ESCOMP/CDEPS | ||
path: cdeps-src | ||
ref: ${{ env.CDEPS_VERSION }} | ||
- name: get genf90 | ||
run: | | ||
cd cdeps-src | ||
git submodule update --init | ||
- name: Build CDEPS | ||
if: steps.cache-cdeps.outputs.cache-hit != 'true' | ||
uses: ESCOMP/CDEPS/.github/actions/[email protected] | ||
|