From da5b051a67dbfc9f866cb4dce3c685f419b6b97f Mon Sep 17 00:00:00 2001 From: Ilya Artemov Date: Tue, 24 Dec 2024 13:31:23 +0100 Subject: [PATCH 1/2] Adding CodeQl check for C-code --- .github/workflows/codeql_checks.yml | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/codeql_checks.yml diff --git a/.github/workflows/codeql_checks.yml b/.github/workflows/codeql_checks.yml new file mode 100644 index 0000000..4af9fff --- /dev/null +++ b/.github/workflows/codeql_checks.yml @@ -0,0 +1,47 @@ +name: "CodeQL (c-cpp)" + +on: + workflow_dispatch: + push: + branches: + - master + - main + - develop + pull_request: + # Excluded path: add the paths you want to ignore instead of deleting the workflow + paths-ignore: + - '.github/workflows/*.yml' + - 'tests/*' + +jobs: + analyse: + name: Analyse + strategy: + fail-fast: false + matrix: + sdk: ["$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK", "$FLEX_SDK"] + # 'cpp' covers C and C++ + language: ['cpp'] + runs-on: ubuntu-latest + container: + image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest + + steps: + - name: Clone + uses: actions/checkout@v4 + with: + submodules: true + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + queries: security-and-quality + + # CodeQL will create the database during the compilation + - name: Build + run: | + make BOLOS_SDK=${{ matrix.sdk }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 From c416c5d2fe391b62086cf4dafa348873dfe1239d Mon Sep 17 00:00:00 2001 From: Ilya Artemov Date: Mon, 6 Jan 2025 10:32:26 +0100 Subject: [PATCH 2/2] Adding python scan (as there was default one) --- .github/workflows/codeql_checks.yml | 2 +- .github/workflows/codeql_checks_python.yml | 39 ++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/codeql_checks_python.yml diff --git a/.github/workflows/codeql_checks.yml b/.github/workflows/codeql_checks.yml index 4af9fff..7e6e1c2 100644 --- a/.github/workflows/codeql_checks.yml +++ b/.github/workflows/codeql_checks.yml @@ -1,4 +1,4 @@ -name: "CodeQL (c-cpp)" +name: "CodeQL (c-code)" on: workflow_dispatch: diff --git a/.github/workflows/codeql_checks_python.yml b/.github/workflows/codeql_checks_python.yml new file mode 100644 index 0000000..17bd199 --- /dev/null +++ b/.github/workflows/codeql_checks_python.yml @@ -0,0 +1,39 @@ +name: "CodeQL (python)" + +on: + workflow_dispatch: + push: + branches: + - master + - main + - develop + pull_request: + # Excluded path: add the paths you want to ignore instead of deleting the workflow + paths-ignore: + - '.github/workflows/*.yml' + +jobs: + analyse: + name: Analyse + strategy: + fail-fast: false + matrix: + language: ['python'] + runs-on: ubuntu-latest + container: + image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest + + steps: + - name: Clone + uses: actions/checkout@v4 + with: + submodules: true + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + queries: security-and-quality + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3