Commit 10f5d797 authored by Stefan Behnel's avatar Stefan Behnel

Fix GH-Actions cache key. Apparently, it must not contain ",", and there is no "replace" function.

parent 47f80110
......@@ -141,7 +141,7 @@ jobs:
if: startsWith(runner.os, 'Linux')
with:
path: ~/.ccache
key: ${{ runner.os }}-ccache${{ matrix.extra_hash }}-${{ matrix.python-version }}-${{ env.BACKEND }}-${{ hashFiles('**/test-requirements*.txt', '**/ci.yml', '**/ci-run.sh') }}
key: ${{ runner.os }}-ccache${{ matrix.extra_hash }}-${{ matrix.python-version }}-${{ matrix.backend == 'c' }}-${{ matrix.backend == 'cpp' }}-${{ matrix.backend == 'c,cpp' }}-${{ hashFiles('**/test-requirements*.txt', '**/ci.yml', '**/ci-run.sh') }}
- name: Run CI
continue-on-error: ${{ matrix.allowed_failure || false }}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment