You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ez...@apache.org on 2023/10/30 16:47:30 UTC

(trafficserver) branch master updated: Codeql cmake (#10691)

This is an automated email from the ASF dual-hosted git repository.

eze pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 2f6b3b8b0e Codeql cmake (#10691)
2f6b3b8b0e is described below

commit 2f6b3b8b0eea381112f6b3dfa2da54aa28eb4903
Author: Evan Zelkowitz <ez...@apache.org>
AuthorDate: Mon Oct 30 10:47:25 2023 -0600

    Codeql cmake (#10691)
    
    * Update codeql.yml
---
 .github/workflows/codeql.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 7fc3b1f44a..acf9dc38d1 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -40,7 +40,7 @@ jobs:
     - name: Install dependencies
       run: |
         sudo apt update
-        sudo apt install libmagick++-dev libncurses-dev libpcre2-dev libbrotli-dev libluajit-5.1-dev luajit libjansson-dev libcjose-dev libmaxminddb-dev libgeoip-dev
+        sudo apt install libmagick++-dev libncurses-dev libpcre2-dev libbrotli-dev libluajit-5.1-dev luajit libjansson-dev libcjose-dev libmaxminddb-dev libgeoip-dev ninja-build
     # Initializes the CodeQL tools for scanning.
     - name: Initialize CodeQL
       uses: github/codeql-action/init@v2
@@ -67,9 +67,8 @@ jobs:
 
     - run: |
          echo "Run, Build Application using script"
-         autoreconf -fiv
-         ./configure --enable-experimental-plugins
-         make
+         cmake -B build --preset ci
+         cmake --build build -v
     - name: Perform CodeQL Analysis
       uses: github/codeql-action/analyze@v2
       with: