-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ChangeLog: * .github/workflows/lint.yml: New file. * .github/clang-tidy.yml: New file. Signed-off-by: Pierre-Emmanuel Patry <[email protected]>
- Loading branch information
Showing
2 changed files
with
105 additions
and
0 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 @@ | ||
Checks: '-*' |
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,104 @@ | ||
name: Additional lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- trying | ||
- staging | ||
pull_request: | ||
branches: [ master ] | ||
merge_group: | ||
|
||
jobs: | ||
compilation-database: | ||
env: | ||
# Force locale, in particular for reproducible results re '.github/log_expected_warnings' (see below). | ||
LC_ALL: C.UTF-8 | ||
|
||
runs-on: ubuntu-24.10 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Deps | ||
run: | | ||
sudo apt-get update; | ||
sudo apt-get install -y \ | ||
automake \ | ||
autoconf \ | ||
libtool \ | ||
autogen \ | ||
bison \ | ||
flex \ | ||
libgmp3-dev \ | ||
libmpfr-dev \ | ||
libmpc-dev \ | ||
build-essential \ | ||
gcc-multilib \ | ||
g++-multilib \ | ||
bear \ | ||
dejagnu; | ||
# install Rust directly using rustup | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; | ||
- name: Make Source Read-Only | ||
run: chmod -R a-w ./* | ||
|
||
- name: Configure | ||
run: | | ||
mkdir -p gccrs-build; | ||
cd gccrs-build; | ||
../configure \ | ||
--enable-languages=rust \ | ||
--disable-bootstrap \ | ||
--enable-multilib | ||
- name: Build | ||
shell: bash | ||
run: | | ||
cd gccrs-build; \ | ||
# Add cargo to our path quickly | ||
. "$HOME/.cargo/env"; | ||
bear -- make -Otarget -j $(nproc) 2>&1 | tee log | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: compilation-database | ||
path: gccrs-build/compile_commands.json | ||
|
||
|
||
cland-tidy: | ||
env: | ||
# Force locale, in particular for reproducible results re '.github/log_expected_warnings' (see below). | ||
LC_ALL: C.UTF-8 | ||
runs-on: ubuntu-24.10 | ||
steps: | ||
- name: Install Deps | ||
run: | | ||
sudo apt-get update; | ||
sudo apt-get install -y \ | ||
clang-tools | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: compilation-database | ||
path: db | ||
- run: | | ||
run-clang-tidy -p db/compile-commands.json -style contrib/clang-format gcc/rust/* | ||
include-what-you-use: | ||
env: | ||
# Force locale, in particular for reproducible results re '.github/log_expected_warnings' (see below). | ||
LC_ALL: C.UTF-8 | ||
runs-on: ubuntu-24.10 | ||
steps: | ||
- name: Install Deps | ||
run: | | ||
sudo apt-get update; | ||
sudo apt-get install -y \ | ||
iwyu | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: compilation-database | ||
path: db | ||
- run: | | ||
iwyu_tool.py -p db/compile-commands.json gcc/rust/ |