Skip to content

Commit

Permalink
Merge pull request #34 from project-tsurugi/ci-tuning-stabilization
Browse files Browse the repository at this point in the history
ci: tuning build/test parallel tasks on CI workflow
  • Loading branch information
akirakw authored Jun 11, 2024
2 parents e3961fd + 17ca08c commit e48ed06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
ASAN_OPTIONS: detect_stack_use_after_return=true
run: |
cd build
ctest --verbose --timeout 100 -j 20
ctest --verbose --timeout 100 -j 4 --test-load 16
- name: Verify
uses: project-tsurugi/tsurugi-annotations-action@v1
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Clang-Tidy
run: |
python tools/bin/run-clang-tidy.py -quiet -export-fixes=build/clang-tidy-fix.yaml -p build -extra-arg=-Wno-unknown-warning-option -header-filter=$(pwd)'/(include|memory|shirakami|examples)/.*\\.h$' $(pwd)'/(memory/src|shirakami/src|examples)/.*' 2>&1 | awk '!a[$0]++{print > "build/clang-tidy.log"}'
python tools/bin/run-clang-tidy.py -j 48 -quiet -export-fixes=build/clang-tidy-fix.yaml -p build -extra-arg=-Wno-unknown-warning-option -header-filter=$(pwd)'/(include|memory|shirakami|examples)/.*\\.h$' $(pwd)'/(memory/src|shirakami/src|examples)/.*' 2>&1 | awk '!a[$0]++{print > "build/clang-tidy.log"}'
- name: Doxygen
run: |
Expand Down

0 comments on commit e48ed06

Please sign in to comment.