From d4e83f606eb9d21e09e2a95b44fe5c31f7afb192 Mon Sep 17 00:00:00 2001 From: Paolo Stivanin Date: Tue, 6 Aug 2024 13:45:21 +0200 Subject: [PATCH] Remove old workflow --- .github/workflows/codeql.yml | 3 +- .../workflows/codeql-analysis.yml | 43 ------------------- 2 files changed, 2 insertions(+), 44 deletions(-) delete mode 100644 .github_workflow/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f7137c0..500046b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -17,7 +17,8 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'cpp' ] + language: c-cpp + build-mode: manual steps: - name: Checkout repository diff --git a/.github_workflow/workflows/codeql-analysis.yml b/.github_workflow/workflows/codeql-analysis.yml deleted file mode 100644 index 8ee6e60..0000000 --- a/.github_workflow/workflows/codeql-analysis.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: [ master ] - pull_request: - # The branches below must be a subset of the branches above - branches: [ master ] - schedule: - - cron: '30 13 * * 1' - -jobs: - analyze: - name: Analyze - runs-on: ubuntu:24.04 - - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - - - name: Install Dependencies - run: | - sudo apt update && DEBIAN_FRONTEND=noninteractive sudo apt -y install git gcc clang cmake libgcrypt20-dev libgtk-3-dev libzip-dev libjansson-dev libpng-dev libzbar-dev libprotobuf-c-dev libsecret-1-dev uuid-dev libprotobuf-dev libqrencode-dev libcotp-dev - git clone https://github.com/paolostivanin/OTPClient ./OTPClient - - - name: Build - run: | - cd OTPClient && mkdir build && cd $_ - cmake .. - make - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3