cutter/.github/workflows/coverity-scan.yml

66 lines
1.9 KiB
YAML
Raw Normal View History

2019-12-06 04:30:36 +00:00
name: coverity-scan
on:
schedule:
2020-12-25 05:24:36 +00:00
- cron: "0 9 * * 1,5" # Bi-weekly at 09:00 UTC on Monday and Thursday
2019-12-06 04:30:36 +00:00
jobs:
latest:
runs-on: ubuntu-latest
steps:
2020-12-25 05:24:36 +00:00
- uses: actions/checkout@v2
2019-12-10 05:47:17 +00:00
with:
2020-12-25 05:24:36 +00:00
submodules: recursive
2019-12-10 05:47:17 +00:00
- uses: actions/setup-python@v1
with:
python-version: 3.7.x
2019-12-12 09:49:34 +00:00
2019-12-06 04:30:36 +00:00
- name: Download Coverity Build Tool
run: |
2019-12-06 09:16:02 +00:00
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=radareorg%2Fcutter" -O cov-analysis-linux64.tar.gz
2019-12-06 04:30:36 +00:00
mkdir cov-analysis-linux64
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
- name: Fixed world writable dirs
run: |
chmod go-w $HOME
sudo chmod -R go-w /usr/share
2020-12-25 05:24:36 +00:00
2019-12-12 09:49:34 +00:00
- name: apt dependencies
2020-05-25 11:42:41 +00:00
run: sudo apt-get install ninja-build libgraphviz-dev mesa-common-dev
2020-12-25 05:24:36 +00:00
2019-12-09 05:22:58 +00:00
- name: py dependencies
run: |
pip install meson
2019-12-06 04:30:36 +00:00
- name: CMake
run: |
2019-12-09 05:15:46 +00:00
scripts/fetch_deps.sh
source cutter-deps/env.sh
export LD_LIBRARY_PATH="`llvm-config --libdir`:$LD_LIBRARY_PATH"
2019-12-06 04:30:36 +00:00
mkdir build
cd build
cmake ..
2019-12-06 04:30:36 +00:00
- name: Build with cov-build
run: |
export PATH=`pwd`/cov-analysis-linux64/bin:$PATH
2019-12-12 10:11:32 +00:00
cd build
2019-12-06 04:30:36 +00:00
cov-build --dir cov-int make
- name: Submit the result to Coverity Scan
run: |
2019-12-12 10:45:37 +00:00
cd build
2019-12-06 04:30:36 +00:00
tar czvf cutter.tgz cov-int
curl \
--form project=radareorg-cutter \
--form token=$TOKEN \
--form email=noreply@radare.org \
--form file=@cutter.tgz \
--form version=trunk \
--form description="Cutter" \
2019-12-06 09:16:02 +00:00
https://scan.coverity.com/builds?project=radareorg%2Fcutter
2019-12-06 04:30:36 +00:00
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}