Skip to content

Commit

Permalink
Merge remote-tracking branch 'upsteam/main'
Browse files Browse the repository at this point in the history
Signed-off-by: Salman Wahib <[email protected]>
  • Loading branch information
sxlmnwb committed Sep 3, 2023
2 parents 22a77bc + 830ca91 commit 53ab4d4
Show file tree
Hide file tree
Showing 23 changed files with 2,443 additions and 2,368 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Run linters on code in repo
# * shellcheck and shfmt for shell scripts
# * various tools for Python scripts
name: Lint checks
on: [push, pull_request]
jobs:
python:
strategy:
fail-fast: false
matrix:
version: ['3.11', '3.10', '3.9', '3.8']
uses: ClangBuiltLinux/actions-workflows/.github/workflows/python_lint.yml@main
with:
python_version: ${{ matrix.version }}
shellcheck:
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main
shfmt:
uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/.idea/
/build/
/venv/
*.pyc
llvm-project/
build/
3 changes: 3 additions & 0 deletions .style.yapf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[style]
based_on_style = pep8
column_limit = 100
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ These scripts have been tested in a Docker image of the following distributions
git \
libelf-dev \
libssl-dev \
libstdc++-$(apt list libstdc++6 2>/dev/null | grep -Eos '[0-9]+\.[0-9]+\.[0-9]+' | head -1 | cut -d . -f 1)-dev \
lld \
make \
ninja-build \
Expand Down
Loading

0 comments on commit 53ab4d4

Please sign in to comment.