ASN.1 fix complaints by clang-scan #147
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: Side-Channel Detection | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install meson | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y meson | |
sudo apt-get install -y valgrind | |
- name: Meson setup build | |
run: meson setup build -Dtimecop=enabled | |
- name: Meson compile | |
run: meson compile -C build | |
- name: Meson test | |
run: meson test --wrap='valgrind --vex-guest-max-insns=25 --track-origins=yes --error-exitcode=1' -C build --suite regression |