Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
test

test

test

test

test

test

test

test
  • Loading branch information
demo-exe committed Dec 21, 2023
1 parent 0a69ddb commit d507084
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ jobs:
uses: docker://alpine
with:
args: /bin/sh -c "rm -rf /github/workspace/.* 2>/dev/null || rm -rf /github/workspace/*"
- name: Install deps
uses: docker://alpine
with:
args: /bin/sh -c "apk update && apk add clang17-extra-tools"
- name: Login to the registry
uses: docker/login-action@v1
with:
Expand All @@ -102,7 +106,9 @@ jobs:
# the checkstyle script needs a bit of git history
fetch-depth: 2
- name: Check the code style
run: make checkstyle
uses: docker://alpine
run: |
make checkstyle
integration:
runs-on: ["self-hosted", "hugepages"]
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ version:
fi

checkstyle:
find . -name "*.c" -or -name "*.h" | xargs clang-format-11 -n --Werror
# find . -name "*.c" -or -name "*.h" | xargs clang-format-11 -n --Werror
find . -name "*.c" -or -name "*.h" | xargs /usr/bin/clang-format -n --Werror

ci-build: version
hack/ci-build.sh
Expand Down

0 comments on commit d507084

Please sign in to comment.