Implement support for ALWAYS_AUTH and interactive prompting when the caller did not provide pin #582
Workflow file for this run
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: Scan Build | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
name: CI with softoken | |
runs-on: ubuntu-22.04 | |
container: fedora:latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
dnf -y install $COMPILER automake libtool pkgconf-pkg-config \ | |
autoconf-archive git openssl-devel clang-analyzer | |
- uses: actions/checkout@v3 | |
name: Checkout Repository | |
- name: Setup | |
run: | | |
autoreconf -fiv | |
./configure | |
- name: Scan Build | |
run: | | |
scan-build --html-title="PKCS#11 Provider ($GITHUB_SHA)" \ | |
--keep-cc \ | |
--status-bugs \ | |
--keep-going \ | |
-o scan-build.reports make | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: Scan Build logs | |
path: | | |
scan-build.reports/ |