Skip to content

Commit

Permalink
coverity scan to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed Oct 21, 2023
1 parent 7f24cee commit 3dcc284
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/coverity_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,20 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install build-essential
- name: Install Coverity Build
- name: Install Coverity Build & Build
shell: bash
env:
COVERITY_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
run: |
wget https://scan.coverity.com/download/linux64 --post-data "token=${COVERITY_TOKEN}&project=FreeRTOS-Kernel" -O coverity_tool.tgz
tar -xvzf coverity_tool.tgz
export PATH=$PATH:$(pwd)/coverity_tool/bin
pwd
- name: Build Posix_GCC Demo
shell: bash
working-directory: FreeRTOS/Demo/Posix_GCC
run: cov-build --dir cov-int make -j
run: |
pwd
cov-build --dir cov-int make -j

0 comments on commit 3dcc284

Please sign in to comment.