-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split clang-tidy checks to improve performances
- Loading branch information
1 parent
c4b1266
commit 0d3090a
Showing
4 changed files
with
220 additions
and
1 deletion.
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
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,73 @@ | ||
name: 🧹 clang-tidy | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-clangtidy | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run_clang_tidy: | ||
name: clang-tidy | ||
runs-on: ubuntu-22.04 | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install dependencies | ||
run: | | ||
.github/workflows/dependencies/clang15.sh | ||
- name: set up cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: build WarpX & run clang-tidy | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=300M | ||
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | ||
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | ||
ccache -z | ||
export CXX=$(which clang++-15) | ||
export CC=$(which clang-15) | ||
cmake -S . -B build_clang_tidy \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DWarpX_DIMS="2" \ | ||
-DWarpX_MPI=ON \ | ||
-DWarpX_COMPUTE=OMP \ | ||
-DWarpX_PSATD=ON \ | ||
-DWarpX_QED=ON \ | ||
-DWarpX_QED_TABLE_GEN=ON \ | ||
-DWarpX_OPENPMD=ON \ | ||
-DWarpX_PRECISION=SINGLE \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
cmake --build build_clang_tidy -j 4 | ||
${{github.workspace}}/.github/workflows/source/makeMakefileForClangTidy.py --input ${{github.workspace}}/ccache.log.txt | ||
make -j4 --keep-going -f clang-tidy-ccache-misses.mak \ | ||
CLANG_TIDY=clang-tidy-15 \ | ||
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
save_pr_number: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Save PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
run: | | ||
echo $PR_NUMBER > pr_number.txt | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pr_number | ||
path: pr_number.txt | ||
retention-days: 1 |
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,73 @@ | ||
name: 🧹 clang-tidy | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-clangtidy | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run_clang_tidy: | ||
name: clang-tidy | ||
runs-on: ubuntu-22.04 | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install dependencies | ||
run: | | ||
.github/workflows/dependencies/clang15.sh | ||
- name: set up cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: build WarpX & run clang-tidy | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=300M | ||
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | ||
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | ||
ccache -z | ||
export CXX=$(which clang++-15) | ||
export CC=$(which clang-15) | ||
cmake -S . -B build_clang_tidy \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DWarpX_DIMS="3" \ | ||
-DWarpX_MPI=ON \ | ||
-DWarpX_COMPUTE=OMP \ | ||
-DWarpX_PSATD=ON \ | ||
-DWarpX_QED=ON \ | ||
-DWarpX_QED_TABLE_GEN=ON \ | ||
-DWarpX_OPENPMD=ON \ | ||
-DWarpX_PRECISION=SINGLE \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
cmake --build build_clang_tidy -j 4 | ||
${{github.workspace}}/.github/workflows/source/makeMakefileForClangTidy.py --input ${{github.workspace}}/ccache.log.txt | ||
make -j4 --keep-going -f clang-tidy-ccache-misses.mak \ | ||
CLANG_TIDY=clang-tidy-15 \ | ||
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
save_pr_number: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Save PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
run: | | ||
echo $PR_NUMBER > pr_number.txt | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pr_number | ||
path: pr_number.txt | ||
retention-days: 1 |
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,73 @@ | ||
name: 🧹 clang-tidy | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-clangtidy | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run_clang_tidy: | ||
name: clang-tidy | ||
runs-on: ubuntu-22.04 | ||
if: github.event.pull_request.draft == false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: install dependencies | ||
run: | | ||
.github/workflows/dependencies/clang15.sh | ||
- name: set up cache | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: build WarpX & run clang-tidy | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=300M | ||
export CCACHE_EXTRAFILES=${{ github.workspace }}/.clang-tidy | ||
export CCACHE_LOGFILE=${{ github.workspace }}/ccache.log.txt | ||
ccache -z | ||
export CXX=$(which clang++-15) | ||
export CC=$(which clang-15) | ||
cmake -S . -B build_clang_tidy \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DWarpX_DIMS="RZ" \ | ||
-DWarpX_MPI=ON \ | ||
-DWarpX_COMPUTE=OMP \ | ||
-DWarpX_PSATD=ON \ | ||
-DWarpX_QED=ON \ | ||
-DWarpX_QED_TABLE_GEN=ON \ | ||
-DWarpX_OPENPMD=ON \ | ||
-DWarpX_PRECISION=SINGLE \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
cmake --build build_clang_tidy -j 4 | ||
${{github.workspace}}/.github/workflows/source/makeMakefileForClangTidy.py --input ${{github.workspace}}/ccache.log.txt | ||
make -j4 --keep-going -f clang-tidy-ccache-misses.mak \ | ||
CLANG_TIDY=clang-tidy-15 \ | ||
CLANG_TIDY_ARGS="--config-file=${{github.workspace}}/.clang-tidy --warnings-as-errors=*" | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
save_pr_number: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Save PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
run: | | ||
echo $PR_NUMBER > pr_number.txt | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pr_number | ||
path: pr_number.txt | ||
retention-days: 1 |