Prepare for release 1.2.0 #97
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
name: coverity-scan | |
on: | |
# the number of builds is limited | |
push: | |
branches: | |
- 'master' | |
jobs: | |
latest: | |
if: github.repository == 'tpm2-software/tpm2-openssl' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install autoconf-archive libtss2-dev | |
- name: Download Coverity Build Tool | |
run: | | |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=tpm2-openssl" -O cov-analysis-linux64.tar.gz | |
mkdir cov-analysis-linux64 | |
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
- name: Configure tpm2-openssl | |
run: | | |
./bootstrap | |
./configure --enable-op-digest --enable-op-cipher | |
- name: Build tpm2-openssl with cov-build | |
run: | | |
export PATH=$GITHUB_WORKSPACE/cov-analysis-linux64/bin:$PATH | |
cov-build --dir cov-int make | |
- name: Submit the result to Coverity Scan | |
run: | | |
tar czvf tpm2-openssl-scan.tgz cov-int | |
curl \ | |
--form token=$TOKEN \ | |
--form email=$EMAIL \ | |
--form [email protected] \ | |
--form version=master \ | |
--form description="$GITHUB_SHA" \ | |
https://scan.coverity.com/builds?project=tpm2-openssl | |
env: | |
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
EMAIL: ${{ secrets.COVERITY_SUBMISSION_EMAIL }} |