Skip to content

Commit

Permalink
test
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 9e79dca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/coverity_scan.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: FreeRTOS-Kernel Coverity Scan
on:
push:
schedule: ## Scheduled to run at 1:15 AM UTC daily.
- cron: '15 1 * * *'

Expand Down Expand Up @@ -31,14 +32,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 9e79dca

Please sign in to comment.