From 57cd3a733d1af9ca64d5d2416a51e2ccc16112aa Mon Sep 17 00:00:00 2001 From: Surendrajat Date: Fri, 25 Dec 2020 10:54:36 +0530 Subject: [PATCH] CI: fix Coverity Scan (#2536) --- .github/workflows/coverity-scan.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 1ac3ffce..45495b9a 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -1,15 +1,15 @@ name: coverity-scan on: schedule: - - cron: '0 9 * * 1,5' # Bi-weekly at 09:00 UTC on Monday and Thursday + - cron: "0 9 * * 1,5" # Bi-weekly at 09:00 UTC on Monday and Thursday jobs: latest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: - submodules: true + submodules: recursive - uses: actions/setup-python@v1 with: python-version: 3.7.x @@ -26,10 +26,10 @@ jobs: run: | chmod go-w $HOME sudo chmod -R go-w /usr/share - + - name: apt dependencies run: sudo apt-get install ninja-build libgraphviz-dev mesa-common-dev - + - name: py dependencies run: | pip install meson @@ -41,7 +41,7 @@ jobs: export LD_LIBRARY_PATH="`llvm-config --libdir`:$LD_LIBRARY_PATH" mkdir build cd build - cmake -DCUTTER_USE_BUNDLED_RADARE2=ON ../src + cmake -DCUTTER_USE_BUNDLED_RIZIN=ON .. - name: Build with cov-build run: |