Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{env.CCACHE_DIR}}
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.gpu}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{env.CCACHE_DIR}}
key: ${{matrix.os}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{env.CCACHE_DIR}}
key: ${{runner.os}}-${{matrix.sys}}-${{matrix.env}}-${{matrix.build_type}}-${{matrix.lib}}-${{matrix.components}}-${{matrix.metis}}-ccache-${{github.run_id}}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Cache METIS
if: matrix.metis == 'metis'
id: cache-metis
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: metis/
key: ${{matrix.msvc}}-metis-5.1.0-${{matrix.build_type}}-shared
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:

- name: Cache LAPACK
id: cache-lapack
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{env.CCACHE_DIR}}
Expand Down
Loading