summaryrefslogtreecommitdiff
path: root/neozip/.github/workflows/codeql.yml
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
commit25a9943d68a7dc31eeefeb17913dbe37d87e5302 (patch)
tree540166d548cafc56726a07225f2dbe649c8e2444 /neozip/.github/workflows/codeql.yml
parenta4b5ffbaadb591066e2a97f8d450fb1d93e56a6e (diff)
downloadProject-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.tar.gz
Project-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.zip
NOISSUE Remove not needed CI workflows for GitHub Actions and reworked some workflows
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'neozip/.github/workflows/codeql.yml')
-rw-r--r--neozip/.github/workflows/codeql.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/neozip/.github/workflows/codeql.yml b/neozip/.github/workflows/codeql.yml
deleted file mode 100644
index 972c694487..0000000000
--- a/neozip/.github/workflows/codeql.yml
+++ /dev/null
@@ -1,54 +0,0 @@
-name: CodeQL
-on:
- workflow_call:
- workflow_dispatch:
- schedule:
- - cron: "27 17 * * 0"
-
-jobs:
- analyze:
- name: CodeQL (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- permissions:
- actions: read
- contents: read
- security-events: write
-
- strategy:
- fail-fast: false
- matrix:
- # https://codeql.github.com/docs/codeql-overview/system-requirements/
- os:
- - ubuntu-latest
- - macos-latest
- - macos-26-intel
- - windows-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v6
- with:
- show-progress: 'false'
-
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v4
- with:
- languages: cpp
- queries: +security-and-quality
-
- - name: Build default config
- shell: bash
- run: |
- cmake -B build-default -S . ${{ runner.os == 'Windows' && '-A x64' || '' }}
- cmake --build build-default -j4
-
- - name: Build compat config without optim/strategies, with reduced mem
- shell: bash
- run: |
- cmake -B build-compat -S . -DZLIB_COMPAT=ON -DWITH_NEW_STRATEGIES=OFF -DWITH_OPTIM=OFF -DWITH_REDUCED_MEM=ON ${{ runner.os == 'Windows' && '-A x64' || '' }}
- cmake --build build-compat -j4
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v4
- with:
- category: "/oss:${{ matrix.os }}"