1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-02-17 15:56:21 -05:00

ci: install libconfig for codeql

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2024-05-20 05:55:12 +01:00
parent 7d4dda0cf9
commit aa3ec4ca83
No known key found for this signature in database
GPG key ID: D3A4405BE6CC17F4

View file

@ -19,6 +19,13 @@ jobs:
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