This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository eflete.
View the commit online.
commit ddb59ddf232f1c9f5df5090b907fa410f0308884
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Wed Oct 9 21:20:11 2024 +0500
github: remove workflows
---
.github/workflows/build.yml.pause | 36 -----------------
.github/workflows/c-cpp.yml | 45 ---------------------
.github/workflows/code_quality.yml | 25 ------------
.github/workflows/codeql.yml.pause | 82 --------------------------------------
4 files changed, 188 deletions(-)
diff --git a/.github/workflows/build.yml.pause b/.github/workflows/build.yml.pause
deleted file mode 100644
index 9073c3a51..000000000
--- a/.github/workflows/build.yml.pause
+++ /dev/null
@@ -1,36 +0,0 @@
-name: SonarCloud
-on:
- push:
- branches:
- - master
- pull_request:
- types: [opened, synchronize, reopened]
-jobs:
- build:
- name: Build and analyze
- runs-on: ubuntu-latest
- env:
- BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- - name: install deps
- run: |
- sudo apt-get update
- sudo apt-get install -y autopoint gettext libunwind-dev libefl-all-dev libeet1 libeet-bin
- # sudo apt-get install -y check
- - name: Install sonar-scanner and build-wrapper
- uses: SonarSource/sonarcloud-github-c-cpp@v1.3
- - name: Run build-wrapper
- run: |
- autoreconf --install
- ./configure
- build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make clean all
- - name: Run sonar-scanner
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- run: |
- sonar-scanner --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"
-
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
deleted file mode 100644
index d7d8b5572..000000000
--- a/.github/workflows/c-cpp.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-name: Build and test
-
-on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
-jobs:
- build:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest]
- env:
- OS: ${{ matrix.os }}
- # PYTHON: '3.10'
- steps:
- - uses: actions/checkout@master
- - name: Install dependencies
- run: |
- sudo apt-get update
- sudo apt-get install -y autopoint meson ninja-build gettext libunwind-dev libefl-all-dev libeet1 libeet-bin
- sudo apt-get install -y check lcov
- - name: Setup python
- uses: actions/setup-python@master
- # with:
- # python-version: 3.10
- - name: Install python dependencies
- run: pip install lxml
- - name: Setup project (meson)
- run: meson setup . build -Db_coverage=true -Dbuild-tests=true
- - name: Build project (ninja)
- run: ninja -C build
- - name: Run tests (ninja)
- run: ninja -C build test
- - name: Generate coverage report
- run: ./scripts/generate_coverage_report.sh
- - name: Upload to Codecov
- uses: codecov/codecov-action@v3.1.4
- env:
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- directory: ./build/meson-logs/
- files: ./coverage.xml
- verbose: true
diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml
deleted file mode 100644
index bd58e15d3..000000000
--- a/.github/workflows/code_quality.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Qodana
-on:
- workflow_dispatch:
- pull_request:
- push:
- branches:
- - main
- - 'releases/*'
-
-jobs:
- qodana:
- runs-on: ubuntu-latest
- permissions:
- contents: write
- pull-requests: write
- checks: write
- steps:
- - uses: actions/checkout@v3
- with:
- ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
- fetch-depth: 0 # a full history is required for pull request analysis
- - name: 'Qodana Scan'
- uses: JetBrains/qodana-action@v2023.2
- env:
- QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
diff --git a/.github/workflows/codeql.yml.pause b/.github/workflows/codeql.yml.pause
deleted file mode 100644
index 06165e09d..000000000
--- a/.github/workflows/codeql.yml.pause
+++ /dev/null
@@ -1,82 +0,0 @@
-# For most projects, this workflow file will not need changing; you simply need
-# to commit it to your repository.
-#
-# You may wish to alter this file to override the set of languages analyzed,
-# or to provide custom queries or build logic.
-#
-# ******** NOTE ********
-# We have attempted to detect the languages in your repository. Please check
-# the `language` matrix defined below to confirm you have the correct set of
-# supported CodeQL languages.
-#
-name: "CodeQL"
-
-on:
- push:
- branches: [ "master" ]
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [ "master" ]
- schedule:
- - cron: '29 5 * * 5'
-
-jobs:
- analyze:
- name: Analyze
- # Runner size impacts CodeQL analysis time. To learn more, please see:
- # - https://gh.io/recommended-hardware-resources-for-running-codeql
- # - https://gh.io/supported-runners-and-hardware-resources
- # - https://gh.io/using-larger-runners
- # Consider using larger runners for possible analysis time improvements.
- runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
- timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
- permissions:
- actions: read
- contents: read
- security-events: write
-
- strategy:
- fail-fast: false
- matrix:
- language: [ 'cpp' ]
- # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', '_javascript_', 'python', 'ruby', 'swift' ]
- # Use only 'java' to analyze code written in Java, Kotlin or both
- # Use only '_javascript_' to analyze code written in _javascript_, TypeScript or both
- # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v3
-
- # Initializes the CodeQL tools for scanning.
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v2
- with:
- languages: ${{ matrix.language }}
- # If you wish to specify custom queries, you can do so here or in a config file.
- # By default, queries listed here will override any specified in a config file.
- # Prefix the list here with "+" to use these queries and those in the config file.
-
- # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
- # queries: security-extended,security-and-quality
-
-
- # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
- # If this step fails, then you should remove it and run the build manually (see below)
- #- name: Autobuild
- # uses: github/codeql-action/autobuild@v2
-
- # âšī¸ Command-line programs to run using the OS shell.
- # đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
-
- # If the Autobuild fails above, remove it and uncomment the following three lines.
- # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
-
- - run: |
- echo "Run, Build Application using script"
- ./autogen.sh & make
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v2
- with:
- category: "/language:${{matrix.language}}"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.