Skip to content

Commit

Permalink
add support for ccache build with cmake (ci fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Sep 27, 2024
1 parent 2cd3502 commit fe569e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ on:
build_config:
description: "Build Config (debug/release/...)"
required: true
default: "release"
default: "release_assertions"
test:
description: "Run LLVM tests"
required: true
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
uses: hendrikmuhs/ccache-action@v1
with:
max-size: 2G
key: ${{ matrix.os }}-${{ github.event.inputs.script }}-${{ github.event.build_config }}
key: ${{ matrix.os }}-${{ github.event.inputs.script }}-${{ github.event.inputs.build_config }}
variant: sccache
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/demo_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
uses: hendrikmuhs/ccache-action@v1
with:
max-size: 2G
key: ${{ matrix.os }}-${{ github.event.inputs.script }}-${{ github.event.build_config }}
key: ${{ matrix.os }}-${{ matrix.script }}-${{ matrix.build_config }}
variant: sccache
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down

0 comments on commit fe569e9

Please sign in to comment.