Add configure option to enable the static PKCS11 engine #186
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: | |
push: | |
pull_request: | |
jobs: | |
coverity: | |
runs-on: ubuntu-latest | |
env: | |
token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
steps: | |
- uses: actions/checkout@v4 | |
if: env.token | |
- name: Get ready for scanning | |
if: env.token | |
run: | | |
sudo apt-get install -y libssl-dev opensc softhsm2 | |
autoreconf --verbose --install --force | |
./configure | |
- uses: vapier/coverity-scan-action@v1 | |
if: env.token | |
with: | |
email: 'viktor.tarasov@gmail.com' | |
token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
command: make |