]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
CI: enable CodeQL analyzer
authorIker Pedrosa <ipedrosa@redhat.com>
Mon, 9 May 2022 14:06:38 +0000 (16:06 +0200)
committerSerge Hallyn <serge@hallyn.com>
Tue, 24 May 2022 15:55:32 +0000 (10:55 -0500)
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
.github/workflows/static-code-analysis.yml [new file with mode: 0644]

diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml
new file mode 100644 (file)
index 0000000..02f296b
--- /dev/null
@@ -0,0 +1,38 @@
+name: "Static code analysis"
+on:
+  push:
+    branches: [master]
+  pull_request:
+    branches: [master]
+  schedule:
+    # Everyday at midnight
+    - cron: '0 0 * * *'
+jobs:
+  codeql:
+    runs-on: ubuntu-latest
+    permissions:
+      security-events: write
+    steps:
+    - name: Checkout repository
+      uses: actions/checkout@v2
+
+    - name: Install dependencies
+      id: dependencies
+      uses: ./.github/actions/install-dependencies
+
+    - name: Initialize CodeQL
+      uses: github/codeql-action/init@v1
+      with:
+        languages: cpp
+        queries: +security-and-quality
+
+    - name: Configure shadow-utils
+      run: ./autogen.sh --without-selinux --disable-man
+
+    - name: Build shadow-utils
+      run: |
+        PROCESSORS=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+        make -j$PROCESSORS
+
+    - name: Perform CodeQL Analysis
+      uses: github/codeql-action/analyze@v1