Skip to content

Commit

Permalink
issue #6992 Automatic Coverity run
Browse files Browse the repository at this point in the history
Having Coverity automatically run.

Checking all programs present ...
Looks like secrets won't work in a fork :-(
  • Loading branch information
albert-github committed Jan 3, 2022
1 parent 5ccca7c commit 7bad431
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,25 @@ jobs:
run: |
choco install wget --no-progress
- name: Check tool versions (Windows)
shell: bash
run: |
echo "=== perl ===";
perl --version;
echo "=== python ===";
python --version;
echo "=== cmake ===";
cmake --version;
echo "=== bison ===";
win_bison --version;
echo "=== flex ===";
win_flex --version;
echo "=== curl ===";
curl --version;
echo "=== tar ===";
tar --version;
if: matrix.config.os == 'windows-latest'

- name: Download Coverity
run: |
wget https://scan.coverity.com/download/cxx/win64 --post-data "token=$TOKEN&project=doxygen%2Fdoxygen" -O cov-analysis-win64-2020.09.zip
Expand Down Expand Up @@ -70,25 +89,6 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v2

- name: Check tool versions (Windows)
shell: bash
run: |
echo "=== perl ===";
perl --version;
echo "=== python ===";
python --version;
echo "=== cmake ===";
cmake --version;
echo "=== bison ===";
win_bison --version;
echo "=== flex ===";
win_flex --version;
echo "=== curl ===";
curl --version;
echo "=== tar ===";
tar --version;
if: matrix.config.os == 'windows-latest'

- name: Configure
shell: cmake -P {0}
run: |
Expand Down

0 comments on commit 7bad431

Please sign in to comment.