mirror of
https://github.com/yshui/picom.git
synced 2024-11-18 13:55:36 -05:00
19e045daed
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches: [next]
|
|
pull_request:
|
|
branches: [next]
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: ['cpp', 'python']
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install libconfig 1.7
|
|
run: |
|
|
wget https://hyperrealm.github.io/libconfig/dist/libconfig-1.7.3.tar.gz
|
|
tar -xvf libconfig-1.7.3.tar.gz
|
|
cd libconfig-1.7.3
|
|
./configure --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu/
|
|
sudo make install
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
# Install dependencies
|
|
- run: sudo apt update && sudo apt install libdbus-1-dev libegl-dev libev-dev libgl-dev libpcre2-dev libpixman-1-dev libx11-xcb-dev libxcb1-dev libxcb-composite0-dev libxcb-damage0-dev libxcb-glx0-dev libxcb-image0-dev libxcb-present-dev libxcb-randr0-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-shape0-dev libxcb-util-dev libxcb-xfixes0-dev meson ninja-build uthash-dev
|
|
if: ${{ matrix.language == 'cpp' }}
|
|
|
|
# Autobuild
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v3
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|