Compare commits

...

13 Commits
1.7 ... master

Author SHA1 Message Date
wb2osz
390d4a8c27
Update ci.yml
Upload artifact v2 doesn't work anymore.
2024-09-13 11:53:01 -04:00
Rafael Gustavo da Cunha Pereira Pinto
69407ccf84 Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
41e7851376 Update codeql-analysis-python.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
c5c7d4a44d Update codeql-analysis-python.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
e7b4650935 Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
21048d5d1a Create codeql-analysis-python.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
3aa8097461 removing python from codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
3f3fed216b Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
9ae4edcabf Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
7935054ee3 Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
c499496bbc Update CMakeLists.txt 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
0a1670f7c2 Update codeql-analysis.yml 2024-05-06 14:30:42 -04:00
Rafael Gustavo da Cunha Pereira Pinto
7552105282 Update codeql-analysis.yml to v2 2024-05-06 14:30:42 -04:00
4 changed files with 73 additions and 8 deletions

View File

@ -149,7 +149,7 @@ jobs:
make package
fi
- name: archive binary
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: direwolf_${{ matrix.config.os }}_${{ matrix.config.arch }}_${{ github.sha }}
path: |

View File

@ -0,0 +1,64 @@
# 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 - Python"
on:
push:
branches: [ dev ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ dev ]
schedule:
- cron: '25 8 * * 4'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
setup-python-dependencies: true
# 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.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

View File

@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: "CodeQL - CPP"
on:
push:
@ -32,19 +32,20 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'cpp', 'python' ]
language: [ 'cpp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
setup-python-dependencies: true
# 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.
@ -53,7 +54,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
@ -70,4 +71,4 @@ jobs:
make test
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1.0)
cmake_minimum_required(VERSION 3.5.0)
project(direwolf)