Skip to content

Commit

Permalink
trying to make ccache effective again #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Oct 13, 2024
1 parent 8254b48 commit 85f2a55
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ jobs:
with:
citation-path: sumo/CITATION.cff

- name: ccache
if: github.event_name != 'schedule'
uses: hendrikmuhs/ccache-action@v1.2

- name: Cloning jupedsim
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
uses: actions/checkout@v4
Expand All @@ -68,6 +64,12 @@ jobs:
ref: ${{ matrix.jps_version }}
path: jupedsim

- name: ccache
if: github.event_name != 'schedule'
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ matrix.build_type }}-${{ matrix.compiler }}

- name: Building libjupedsim
if: matrix.build_type == 'full' && matrix.compiler == 'gcc'
run: |
Expand Down

0 comments on commit 85f2a55

Please sign in to comment.