File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 steps :
1717 - uses : actions/checkout@v2
1818
19+ - name : ccache
20+ uses : hendrikmuhs/ccache-action@v1.2
21+ with :
22+ key : scriptcheck-${{ runner.os }}
23+
1924 - name : Cache Cppcheck
2025 uses : actions/cache@v2
2126 with :
2429
2530 - name : build cppcheck
2631 run : |
32+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
2733 make -j$(nproc) -s
2834 strip -s ./cppcheck
2935
Original file line number Diff line number Diff line change 1818 steps :
1919 - uses : actions/checkout@v2
2020
21+ - name : ccache
22+ uses : hendrikmuhs/ccache-action@v1.2
23+ with :
24+ key : selfcheck-${{ runner.os }}
25+
2126 - name : Cache Qt ${{ env.QT_VERSION }}
2227 id : cache-qt
2328 uses : actions/cache@v1 # not v2!
3540 # TODO: cache this - perform same build as for the other self check
3641 - name : Self check (build)
3742 run : |
38- make clean
43+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
3944 make -j$(nproc) -s CXXFLAGS="-O2 -w" MATCHCOMPILER=yes
4045
4146 - name : CMake
You can’t perform that action at this time.
0 commit comments