Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
matrix:
os:
- ubuntu-22.04
- ubuntu-20.04
- ubuntu-24.04
compiler:
- vendor: gnu
env: { CC: gcc }
Expand Down Expand Up @@ -57,9 +57,6 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: deps
run: brew update && brew install
libyaml
- name: build
env: ${{ matrix.compiler.env }}
run: LDFLAGS="-L$(brew --prefix)/lib"
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
libyaml-dev

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}

- run: |
make

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v4

scan-build:
name: scan-build
Expand All @@ -58,9 +58,4 @@ jobs:
- name: scan-build
run: |
make clean
scan-build -sarif -o build/sarif make

- name: upload scan-build
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: build/sarif
scan-build make
Loading