Skip to content

Commit

Permalink
remove caching step, should now be done by setup-ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Apr 12, 2024
1 parent fe3137f commit c94b361
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,17 @@ jobs:
include:
- os: "ubuntu-20.04"
shell: "bash"
ccache-path: "~/.cache/ccache"
- os: "macos-13"
shell: "bash"
ccache-path: "/Users/runner/Library/Caches/ccache"
- os: "windows-2022"
shell: "msys2 {0}"
ccache-path: 'C:\Users\runneradmin\AppData\Local\ccache'
defaults:
run:
shell: ${{ matrix.shell }}
steps:
- uses: spatial-model-editor/setup-ci@v1
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ${{ matrix.ccache-path }}
key: ccache-${{ github.job }}-${{ runner.os }}-${{ github.sha }}
restore-keys: ccache-${{ github.job }}-${{ runner.os }}-
- name: Build script
run: ./build.sh
- run: ./build.sh
- uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
Expand Down

0 comments on commit c94b361

Please sign in to comment.