Skip to content

Commit

Permalink
install inkscape using same cache as OpenCppCoverage
Browse files Browse the repository at this point in the history
Signed-off-by: Matthieu Gallien <[email protected]>
  • Loading branch information
mgallien committed Mar 7, 2024
1 parent 9ff671a commit 6807ee5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/windows-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
craft --add-blueprint-repository [git]https://github.com/nextcloud/desktop-client-blueprints.git
craft craft
craft --install-deps nextcloud-client
choco install inkscape
- name: Cache Install OpenCppCoverage
id: cache-install-opencppcoverage
Expand All @@ -47,6 +46,19 @@ jobs:
run: |
choco install opencppcoverage
- name: Cache Install inkscape
id: cache-install-inkscape
uses: actions/cache@v4
with:
path: C:\Program Files\inkscape
key: ${{ runner.os }}-cache-install-inkscape

- name: Install inkscape
if: steps.cache-install-inkscape.outputs.cache-hit != 'true'
shell: pwsh
run: |
choco install inkscape
- name: Setup PATH
shell: pwsh
run: |
Expand Down

0 comments on commit 6807ee5

Please sign in to comment.