Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bongbui321 committed Jan 16, 2024
1 parent 28f0705 commit 679d166
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,21 @@ jobs:
run: eval "$BUILD"
- name: Setup CI cache
id: restore-scons-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: $GITHUB_WORKSPACE/panda_cache/scons_cache
path: panda_cache/scons_cache
key: ${{ runner.os }}-${{ hashFiles('SConstruct') }}-${{ hashFiles('**/test_misra.sh') }}
- name: cache scons setup
if: steps.restore-panda-cache.outputs.cache-hit != 'true'
run: mkdir -p $GITHUB_WORKSPACE/panda_cache/scons_cache
run: mkdir -p ${{ github.workspace }}/panda_cache/scons_cache
- id: restore-test-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: $GITHUB_WORKSPACE/panda_cache/cppcheck_build
path: panda_cache/cppcheck_build
key: ${{ runner.os }}-${{ hashFiles('**/test_mutation.py') }}
- name: cache test setup
if: steps.restore-test-cache.outputs.cache-hit != 'true'
run: mkdir -p $GITHUB_WORKSPACE/panda_cache/cppcheck_build
run: mkdir -p ${{ github.workspace }}/panda_cache/cppcheck_build
- name: Build FW
run: ${{ env.RUN }} "scons -j$(nproc)"
- name: Run MISRA C:2012 analysis
Expand Down

0 comments on commit 679d166

Please sign in to comment.