-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We removed them from the main repo, lets remove them here too. Signed-off-by: Curtis Malainey <cujomalainey@chromium.org>
- Loading branch information
1 parent
af9a2fe
commit d20f1d8
Showing
4 changed files
with
51 additions
and
25 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,6 @@ | ||
--codespell | ||
--codespellfile scripts/spelling.txt | ||
--ignore C99_COMMENT_TOLERANCE | ||
--no-tree | ||
--strict | ||
-g |
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,25 @@ | ||
--- | ||
# Basic build test | ||
|
||
name: build | ||
|
||
# yamllint disable-line rule:truthy | ||
on: [pull_request, push, workflow_dispatch] | ||
|
||
env: | ||
CMAKE_C_FLAGS: "-Werror -Wall -Wmissing-prototypes\ | ||
-Wimplicit-fallthrough=3 -Wpointer-arith" | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: {fetch-depth: 50, submodules: recursive} | ||
|
||
- name: install tools | ||
run: sudo apt update && sudo apt install -y ninja-build | ||
|
||
- name: build | ||
run: cmake -B build/ -G Ninja | ||
- run: cmake --build build/ |
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
This file was deleted.
Oops, something went wrong.