mirror of https://github.com/neutrinolabs/xrdp
Merge pull request #1732 from aquesnel/gha_cache_cppcheck
Add caching of cppcheck to github action CI builds
This commit is contained in:
commit
19260cc90c
|
@ -131,6 +131,13 @@ jobs:
|
|||
CPPCHECK_REPO: https://github.com/danmar/cppcheck.git
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Cache cppcheck
|
||||
uses: actions/cache@v2
|
||||
env:
|
||||
cache-name: cache-cppcheck
|
||||
with:
|
||||
path: ~/cppcheck.local
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.CPPCHECK_VER }}
|
||||
- run: sudo scripts/install_cppcheck_dependencies_with_apt.sh
|
||||
- run: ./bootstrap
|
||||
- run: scripts/install_cppcheck.sh $CPPCHECK_REPO $CPPCHECK_VER
|
||||
|
|
Loading…
Reference in New Issue