Skip to content

Commit

Permalink
Merge latest master
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierBetschi committed Nov 25, 2024
2 parents f4b4723 + f800707 commit bf1820e
Show file tree
Hide file tree
Showing 420 changed files with 22,304 additions and 75,899 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
with:
submodules: recursive

- name: Get specific submodule hash
id: core-v-submodule-hash
run: |
cd verif/core-v-verif
echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Cache toolchain
id: cache-toolchain
uses: actions/cache@v3
Expand All @@ -42,8 +48,7 @@ jobs:
cache-name: cache-spike
with:
path: tools/spike/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh',
'verif/core-v-verif/') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh')}}-${{ steps.core-v-submodule-hash.outputs.hash }}

- name: Prepare
run: |
Expand Down Expand Up @@ -71,6 +76,12 @@ jobs:
with:
submodules: recursive

- name: Get specific submodule hash
id: core-v-submodule-hash
run: |
cd verif/core-v-verif
echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Cache toolchain
id: cache-toolchain
uses: actions/cache@v3
Expand All @@ -96,8 +107,7 @@ jobs:
cache-name: cache-spike
with:
path: tools/spike/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh',
'verif/core-v-verif/') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh')}}-${{ steps.core-v-submodule-hash.outputs.hash }}

- name: Run Tests
run: |
Expand Down Expand Up @@ -132,6 +142,12 @@ jobs:
with:
submodules: recursive

- name: Get specific submodule hash
id: core-v-submodule-hash
run: |
cd verif/core-v-verif
echo "hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
- name: Cache toolchain
id: cache-toolchain
uses: actions/cache@v3
Expand All @@ -157,8 +173,7 @@ jobs:
cache-name: cache-spike
with:
path: tools/spike/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh',
'verif/core-v-verif/') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('verif/regress/install-spike.sh')}}-${{ steps.core-v-submodule-hash.outputs.hash }}

- name: Run Tests
run: |
Expand Down
Loading

0 comments on commit bf1820e

Please sign in to comment.