From 2b7b2c1de22f464b7fca60d9d63920a0eea48aed Mon Sep 17 00:00:00 2001 From: Marko Petric Date: Thu, 23 Mar 2017 13:32:38 +0100 Subject: [PATCH] Add CONTRIBUTING.md and PULL_REQUEST_TEMPLATE and fix test script --- .github/CONTRIBUTING.md | 3 +++ .github/PULL_REQUEST_TEMPLATE | 8 ++++++++ .travis-ci.d/compile_and_test.sh | 5 ++--- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/PULL_REQUEST_TEMPLATE diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..a73072c --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contribution Guidelines + +Please have a look at the [contribution guidelines for iLCSoft](https://github.com/iLCSoft/ilcsoftDoc/blob/master/.github/CONTRIBUTING.md) diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE new file mode 100644 index 0000000..bd3f7f2 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE @@ -0,0 +1,8 @@ + + +BEGINRELEASENOTES +- Thank you for writing the text to appear in the release notes. It will show up + exactly as it appears between the two bold lines +- ... + +ENDRELEASENOTES \ No newline at end of file diff --git a/.travis-ci.d/compile_and_test.sh b/.travis-ci.d/compile_and_test.sh index 27ba9c8..f196496 100755 --- a/.travis-ci.d/compile_and_test.sh +++ b/.travis-ci.d/compile_and_test.sh @@ -6,7 +6,6 @@ source $ILCSOFT/init_ilcsoft.sh cd /Package mkdir build cd build -cmake -GNinja -C $ILCSOFT/ILCSoft.cmake -DCMAKE_CXX_FLAGS="-fdiagnostics-color=always" .. -ninja +cmake -GNinja -C $ILCSOFT/ILCSoft.cmake -DCMAKE_CXX_FLAGS="-fdiagnostics-color=always" .. && \ +ninja && \ ctest --output-on-failure -