Merge pull request #11574 from aabadie/pr/make_print_versions

make: add print-versions helper target
This commit is contained in:
Martine Lenders 2019-05-24 18:02:42 +02:00 committed by GitHub
commit 88158253b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 4 deletions

View File

@ -41,7 +41,7 @@ Please paste or specifically describe the actual output.
<!-- <!--
Operating system: Mac OSX, Linux, Vagrant VM Operating system: Mac OSX, Linux, Vagrant VM
Build environment: GCC, CLang versions (you can run the following command from Build environment: GCC, CLang versions (you can run the following command from
the RIOT base directory: ./dist/tools/ci/print_toolchain_versions.sh). the RIOT base directory: make print-versions).
--> -->
<!-- Thanks for contributing! --> <!-- Thanks for contributing! -->

View File

@ -68,7 +68,7 @@ other contributors understand your issue and eventually reproduce it:
To fill the `Versions` section, you can use the script provided in the RIOT git To fill the `Versions` section, you can use the script provided in the RIOT git
repository: repository:
``` ```
./dist/tools/ci/print_toolchain_versions.sh make print-versions
``` ```
In summary, try to include as much information as possible, to help maintainers In summary, try to include as much information as possible, to help maintainers

View File

@ -1,6 +1,6 @@
.all: .all:
.PHONY: all doc doc-man doc-latex docclean welcome .PHONY: all doc doc-man doc-latex docclean print-versions welcome
all: welcome all: welcome
@echo "" @echo ""
@ -37,6 +37,9 @@ welcome:
@echo "Or ask questions on our mailing list:" @echo "Or ask questions on our mailing list:"
@echo " users@riot-os.org (http://lists.riot-os.org/mailman/listinfo/users)" @echo " users@riot-os.org (http://lists.riot-os.org/mailman/listinfo/users)"
print-versions:
@./dist/tools/ci/print_toolchain_versions.sh
include makefiles/app_dirs.inc.mk include makefiles/app_dirs.inc.mk
-include makefiles/tests.inc.mk -include makefiles/tests.inc.mk

View File

@ -80,7 +80,7 @@ then
exit $RESULT exit $RESULT
fi fi
run ./dist/tools/ci/print_toolchain_versions.sh run make print-versions
run ./dist/tools/commit-msg/check.sh ${CI_BASE_BRANCH} run ./dist/tools/commit-msg/check.sh ${CI_BASE_BRANCH}
run ./dist/tools/whitespacecheck/check.sh ${CI_BASE_BRANCH} run ./dist/tools/whitespacecheck/check.sh ${CI_BASE_BRANCH}