Skip to content

Commit

Permalink
update coverity scan email
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed Oct 30, 2023
1 parent 37678b0 commit 029365b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/coverity_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ jobs:
shell: bash
env:
COVERITY_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
COVERITY_EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}
run: |
export PATH="$PATH:${{env.cov_scan_path}}"
cmake -S ./examples/cmake_example/ -B build
cd build
cov-build --dir cov-int make -j
tar czvf gcc_freertos_kerenl_sample_build.tgz cov-int
COV_SCAN_UPLOAD_STATUS=$(curl --form token=${COVERITY_TOKEN} \
--form email=[email protected] \
--form email=${COVERITY_EMAIL} \
--form file=@gcc_freertos_kerenl_sample_build.tgz \
--form version="Mainline" \
--form description="FreeRTOS Kernel Nightly Scan" \
Expand Down

0 comments on commit 029365b

Please sign in to comment.