Skip to content

Update How_To_Build.md #20

Update How_To_Build.md

Update How_To_Build.md #20

name: "CodeQL_HydraUSB3_USB_benchmark"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
defaults:
run:
working-directory: HydraUSB3_USB_benchmark
jobs:
analyze:
name: Analyze
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
# Override automatic language detection by changing the below list
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
language: ['cpp']
# Learn more...
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install pkg-config libusb-1.0-0-dev
run: sudo apt-get install pkg-config libusb-1.0-0-dev
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
setup-python-dependencies: false
- run: |
make -j$(nproc) USE_Z3=yes HAVE_RULES=yes
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2