1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 02:25:09 +00:00

Enable cURL, RSS on mac build, lint codeql.yml

This commit is contained in:
Brenden Matthews 2024-04-25 20:03:59 -04:00
parent e686a5f991
commit b6b9b3666e
2 changed files with 22 additions and 19 deletions

View File

@ -34,16 +34,18 @@ jobs:
run: | run: |
brew install --force \ brew install --force \
cmake \ cmake \
curl \
freetype \ freetype \
gettext \ gettext \
imlib2 \
gperf \ gperf \
imlib2 \
lcov \ lcov \
librsvg \ librsvg \
libxft \
libxinerama \
libxfixes \ libxfixes \
libxft \
libxi \ libxi \
libxinerama \
libxml2 \
lua \ lua \
ninja \ ninja \
pkg-config \ pkg-config \
@ -57,6 +59,8 @@ jobs:
cmake .. -G Ninja \ cmake .. -G Ninja \
-DMAINTAINER_MODE=ON \ -DMAINTAINER_MODE=ON \
-DBUILD_WAYLAND=OFF \ -DBUILD_WAYLAND=OFF \
-DBUILD_RSS=ON \
-DBUILD_CURL=ON \
-DBUILD_TESTS=ON -DBUILD_TESTS=ON
- name: Compile - name: Compile
run: cmake --build build run: cmake --build build

View File

@ -1,8 +1,8 @@
name: "CodeQL" name: 'CodeQL'
on: on:
schedule: schedule:
- cron: "20 2 * * 0" - cron: '20 2 * * 0'
jobs: jobs:
analyze: analyze:
@ -16,7 +16,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ["cpp", "javascript", "python"] language: ['cpp', 'javascript', 'python']
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both # Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
@ -38,7 +38,6 @@ jobs:
libc++abi-14-dev \ libc++abi-14-dev \
libcairo2-dev \ libcairo2-dev \
libcurl4-gnutls-dev \ libcurl4-gnutls-dev \
libcurl4-gnutls-dev \
libdbus-glib-1-dev \ libdbus-glib-1-dev \
libglib2.0-dev \ libglib2.0-dev \
libical-dev \ libical-dev \
@ -86,4 +85,4 @@ jobs:
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v3
with: with:
category: "/language:${{matrix.language}}" category: '/language:${{matrix.language}}'