Skip to content

Commit

Permalink
Cache CMake dependencies (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
idofront authored Nov 30, 2024
1 parent 2d2c0f8 commit 92e9317
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Cache CMake dependencies
uses: actions/cache@v3
with:
path: |
/usr/local/lib/cmake
/usr/local/include
key: ${{ runner.os }}-cmake-${{ hashFiles('**/CMakeLists.txt') }}
restore-keys: |
${{ runner.os }}-cmake-
- name: Prepare build environment
run: |
sudo apt-get update
Expand Down

0 comments on commit 92e9317

Please sign in to comment.