Skip to content

Commit

Permalink
ci: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dr8co committed May 19, 2024
1 parent 6137dd5 commit d305ce7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
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
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cpack-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ jobs:

matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
c_compiler: [ gcc-13, clang, cl ]
c_compiler: [ gcc, clang, cl ]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc-13
cpp_compiler: g++-13
c_compiler: gcc
cpp_compiler: g++
- os: macos-latest
c_compiler: clang
cpp_compiler: clang++
exclude:
- os: windows-latest
c_compiler: gcc-13
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: ubuntu-latest
Expand All @@ -36,7 +36,7 @@ jobs:
- os: macos-latest
c_compiler: cl
- os: macos-latest
c_compiler: gcc-13
c_compiler: gcc

steps:
- name: Upgrade Build Tools and install Ninja
Expand Down
4 changes: 2 additions & 2 deletions qodana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: "1.0"

#Specify inspection profile for code analysis
profile:
name: qodana.starter
name: qodana.recommended

#Enable inspections
#include:
Expand All @@ -26,4 +26,4 @@ profile:
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)

#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
linter: jetbrains/qodana-<linter>:latest
linter: jetbrains/qodana-clang:latest

0 comments on commit d305ce7

Please sign in to comment.