-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed recent GMPage crash (Issue #1136). Updated Coverity scan yml.
- Loading branch information
Showing
7 changed files
with
19 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,14 +37,13 @@ jobs: | |
run: | | ||
echo "GCC:" && gcc -v | ||
echo && echo "CMake:" && cmake --version | ||
echo && echo "Ninja:" && ninja --version | ||
- name: Download Coverity Build Tool | ||
env: | ||
TOKEN: ${{ secrets.COVERITY_TOKEN }} | ||
#echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- | ||
run: | | ||
wget -nv https://scan.coverity.com/download/cxx/linux64 --post-data "token=${COVERITY_TOKEN}&project=SphereServer/Source-X" -O cov-analysis-linux64.tar.gz | ||
wget -nv https://scan.coverity.com/download/cxx/linux64 --post-data "token=${TOKEN}&project=SphereServer/Source-X" -O cov-analysis-linux64.tar.gz | ||
mkdir cov-analysis-linux64 | ||
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 | ||
export PATH=`pwd`/cov-analysis-linux64/bin:$PATH | ||
|
@@ -69,13 +68,13 @@ jobs: | |
run: | | ||
tar czvf build-data.tgz cov-int | ||
curl \ | ||
--form project=SphereServer-X \ | ||
--form project=SphereServer/Source-X \ | ||
--form token=$TOKEN \ | ||
--form email=$EMAIL \ | ||
--form [email protected] \ | ||
--form version=trunk \ | ||
--form description="${{github.sha}}" \ | ||
https://scan.coverity.com/builds?project=SphereServer-X | ||
env: | ||
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | ||
EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }} | ||
TOKEN: ${{ secrets.COVERITY_TOKEN }} | ||
EMAIL: ${{ secrets.COVERITY_EMAIL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters