Skip to content

Commit a1f6296

Browse files
committed
CI-unixish.yml: removed random usage of build dir from selfcheck
1 parent c2a8e1f commit a1f6296

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/CI-unixish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -553,12 +553,10 @@ jobs:
553553
# self check simplecpp
554554
./cppcheck $selfcheck_options externals/simplecpp || ec=1
555555
# self check lib/cli
556-
mkdir b1
557-
./cppcheck $selfcheck_options $cppcheck_options --cppcheck-build-dir=b1 --addon=naming.json cli || ec=1
558-
./cppcheck $selfcheck_options $cppcheck_options --cppcheck-build-dir=b1 --addon=naming.json --enable=internal lib || ec=1
556+
./cppcheck $selfcheck_options $cppcheck_options --addon=naming.json cli || ec=1
557+
./cppcheck $selfcheck_options $cppcheck_options --addon=naming.json --enable=internal lib || ec=1
559558
# check gui with qt settings
560-
mkdir b2
561-
./cppcheck $selfcheck_options $cppcheck_options --cppcheck-build-dir=b2 -DQT_VERSION=0x060000 -DQ_MOC_OUTPUT_REVISION=68 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui || ec=1
559+
./cppcheck $selfcheck_options $cppcheck_options -DQT_VERSION=0x060000 -DQ_MOC_OUTPUT_REVISION=68 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui || ec=1
562560
# self check test and tools
563561
./cppcheck $selfcheck_options $cppcheck_options -Icli test/*.cpp tools/*.cpp || ec=1
564562
# triage

0 commit comments

Comments
 (0)