Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
bongbui321 committed Jan 16, 2024
1 parent 70ffac0 commit 5460271
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,23 +113,14 @@ jobs:
- name: Build Docker image
run: eval "$BUILD"
- name: Setup scons cache
id: restore-scons-cache
id: restore-ci-cache
uses: actions/cache@v3
with:
path: panda_cache/scons_cache
key: ${{ runner.os }}-scons
path: ${{github.workspace}}/panda_cache
key: ${{ runner.os }}-ci_cache_new
- name: cache scons setup
if: steps.restore-scons-cache.outputs.cache-hit != 'true'
run: mkdir -p ${{ github.workspace }}/panda_cache/scons_cache
- name: Setup cppcheck cache
id: restore-test-cache
uses: actions/cache@v3
with:
path: panda_cache/cppcheck_build
key: ${{ runner.os }}-ci_cache
- name: cache test setup
if: steps.restore-test-cache.outputs.cache-hit != 'true'
run: mkdir -p ${{ github.workspace }}/panda_cache/cppcheck_build
if: steps.restore-ci-cache.outputs.cache-hit != 'true'
run: mkdir -p ${{ github.workspace }}/panda_cache
- name: Build FW
run: ${{ env.RUN }} "scons -j$(nproc)"
- name: Run MISRA C:2012 analysis
Expand Down

0 comments on commit 5460271

Please sign in to comment.