File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ before_script:
203
203
script :
204
204
- cd ${TRAVIS_BUILD_DIR}
205
205
- make
206
- - ctest --verbose
206
+ - ctest --verbose -D Experimental
207
207
- if [ "$DOC" == "ON" ]; then
208
208
make doc ;
209
209
fi
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ Here is a rough list of initial goals
38
38
3 ) To allow .NET framework and STL to interop directly
39
39
4 ) It should be functional first before fast (do what is needed to get the API worry about speed later)
40
40
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
43
43
44
44
## What it is not
45
45
@@ -74,3 +74,6 @@ Talk about this repository
74
74
Follow the my development stories at our blog
75
75
76
76
https://mydeveloperday.wordpress.com/
77
+
78
+ This or link back to here
79
+ http://http://mydeveloperday.github.io/cpp-net-framework/
You can’t perform that action at this time.
0 commit comments