Merge pull request #5364 from wilzbach/split-up-circleci

Split style target for CircleCi
merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
This commit is contained in:
The Dlang Bot 2017-05-07 14:19:20 +02:00 committed by GitHub
commit 9c611930c9
2 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,9 @@ dependencies:
test:
override:
- ./circleci.sh setup-repos
- ./circleci.sh style
- ./circleci.sh style_lint
- ./circleci.sh has_public_example
- ./circleci.sh publictests
- ./circleci.sh coverage:
parallel: true
timeout: 1200

View file

@ -500,7 +500,9 @@ $(TOOLS_DIR)/checkwhitespace.d:
mv dscanner_makefile_tmp ../dscanner/makefile
make -C ../dscanner githash debug
style: ../dscanner/dsc $(LIB) has_public_example publictests
style: has_public_example publictests style_lint
style_lint: ../dscanner/dsc $(LIB)
@echo "Check for trailing whitespace"
grep -nr '[[:blank:]]$$' etc std ; test $$? -eq 1