From 629514d67d1ae515686473f36f9c16725cf771e2 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Sun, 3 Mar 2024 20:27:21 -0600 Subject: [PATCH] Add CodeQL Analysis workflow --- .github/workflows/build.yml | 8 ++++ .github/workflows/codeql.yml | 79 ++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd8f14a674..7eac55792d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,9 +8,17 @@ on: push: branches: - master + paths: + - '**' + - '!**.yml' + - '**/build.yml' pull_request: branches: - master + paths: + - '**' + - '!**.yml' + - '**/build.yml' workflow_dispatch: # cancel already running builds of the same branch or pull request diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000000..af3951bf93 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,79 @@ +name: "CodeQL" + +on: + workflow_dispatch: + push: + branches: [ "master" ] + paths: + - '**.c' + - '**.cpp' + - '**.h' + - '**.hpp' + - '**.py' + - '!**.yml' + - '**/codeql.yml' + pull_request: + branches: [ "master" ] + paths: + - '**.c' + - '**.cpp' + - '**.h' + - '**.hpp' + - '**.py' + - '!**.yml' + - '**/codeql.yml' + schedule: + - cron: '15 20 15 * *' + +concurrency: + group: ci-${{ github.head_ref }} || concat(${{ github.ref }} + cancel-in-progress: true + +jobs: + analyze: + name: Analyze + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + # required for all workflows + security-events: write + + # only required for workflows in private repositories + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + language: [ 'c-cpp', 'python' ] + # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + - name: Install dependencies + run: | + sudo apt-get update -qq + sudo apt-get install --assume-yes --no-install-recommends \ + ccache \ + gettext autopoint \ + libtool \ + libgtk-3-dev \ + doxygen \ + python3-docutils \ + python3-lxml \ + rst2pdf + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}"