Skip to content

Commit fcdc919

Browse files
incorportate cdash integration
1 parent ca4aecf commit fcdc919

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ before_script:
203203
script:
204204
- cd ${TRAVIS_BUILD_DIR}
205205
- make
206-
- ctest --verbose
206+
- ctest --verbose -D Experimental
207207
- if [ "$DOC" == "ON" ]; then
208208
make doc ;
209209
fi

CTestConfig.cmake

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## This file should be placed in the root directory of your project.
2+
## Then modify the CMakeLists.txt file in the root directory of your
3+
## project to incorporate the testing dashboard.
4+
## # The following are required to uses Dart and the Cdash dashboard
5+
## ENABLE_TESTING()
6+
## INCLUDE(CTest)
7+
set(CTEST_PROJECT_NAME "cpp-net-framework")
8+
set(CTEST_NIGHTLY_START_TIME "01:00:00 UTC")
9+
10+
set(CTEST_DROP_METHOD "http")
11+
set(CTEST_DROP_SITE "my.cdash.org")
12+
set(CTEST_DROP_LOCATION "/submit.php?project=cpp-net-framework")
13+
set(CTEST_DROP_SITE_CDASH TRUE)
14+
15+

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Here is a rough list of initial goals
3838
3) To allow .NET framework and STL to interop directly
3939
4) It should be functional first before fast (do what is needed to get the API worry about speed later)
4040
5) Be cross platform
41-
6) Be compilable on a number of different build platforms
42-
7) Be test driven
41+
6) Be test driven
42+
7) To use open source software services to build good stable code
4343

4444
## What it is not
4545

@@ -74,3 +74,6 @@ Talk about this repository
7474
Follow the my development stories at our blog
7575

7676
https://mydeveloperday.wordpress.com/
77+
78+
This or link back to here
79+
http://http://mydeveloperday.github.io/cpp-net-framework/

0 commit comments

Comments
 (0)