-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LGTM is deprecated and will cease working in Decemeber, per https://github.blog/2022-08-15-the-next-step-for-lgtm-com-github-code-scanning/ Drop the LGTM badges too, as they will stop working as well. Signed-off-by: Andrew Cooper <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 12 * * 3' # Weekly, Wed at 12:30 pm | ||
|
||
jobs: | ||
CodeQL: | ||
|
||
strategy: | ||
matrix: | ||
bits: ['32', '64'] | ||
lto: [LTO=y, LTO=n] | ||
|
||
runs-on: 'ubuntu-22.04' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: github/codeql-action/init@v2 | ||
with: | ||
languages: cpp | ||
queries: security-and-quality | ||
|
||
- name: Build | ||
run: | | ||
make BITS=${{matrix.bits}} ${{matrix.lto}} | ||
- uses: github/codeql-action/analyze@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
TrenchBoot Secure Kernel Loader | ||
=============================== | ||
|
||
[![Language grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/TrenchBoot/secure-kernel-loader.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/TrenchBoot/secure-kernel-loader/context:cpp) | ||
[![Total alerts](https://img.shields.io/lgtm/alerts/g/TrenchBoot/secure-kernel-loader.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/TrenchBoot/secure-kernel-loader/alerts/) | ||
|
||
Open source implementation of Secure Loader for AMD Secure Startup. |