add libc packages #63
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: "CodeQL" | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
analyse: | |
name: Analyse | |
strategy: | |
matrix: | |
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK"] | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: cpp | |
queries: security-and-quality | |
- name: Build | |
run: | | |
apt-get install -y build-essential libc6-dev # should not be necessaire, as image is supposed to have it | |
make -j BOLOS_SDK=${{ matrix.sdk }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |