Skip to content

Commit

Permalink
reviwed files pulled from addition of Boost.CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lcaminiti committed Oct 1, 2019
1 parent cffe679 commit f21fc7d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:
- cd $BOOST_ROOT/libs/$SELF
- ci/travis/codecov.sh

# takes too long for CI:
# takes too long for CI (because lots of tests):
# - os: linux
# env:
# - COMMENT=cppcheck
Expand Down Expand Up @@ -228,3 +228,4 @@ jobs:
notifications:
email:
false

7 changes: 4 additions & 3 deletions Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
# Boost Software License, Version 1.0. (See accompanying file
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

# please order by name to ease maintenance
# please order by name to ease maintenance (this is used by CI)
#
# CI build of examples disabled at repository owner's request
# some examples do not build on all platforms
# CI build of examples disabled at repository owner's request (examples are
# meant for docs so for simplicity might omit work-around to build on all plat)
# build-project example ;
#
build-project test ;

9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Distributed under the [Boost Software License, Version 1.0](http://www.boost.org
### Properties

* C++11 (C++03 possible but not recommended without lambda functions and variadic macros, see documentation for more information).
* Shared Library / DLL with `BOOST_CONTRACT_DYN_LINK` (static library with `BOOST_CONTRACT_STATIC_LINK` and header-only with `BOOST_CONTRACT_HEADER_ONLY` also possible but not recommended, see documentation for more information).
* Shared Library / DLL with `BOOST_CONTRACT_DYN_LINK` (static library with `BOOST_CONTRACT_STATIC_LINK`, header-only also possible but not recommended, see `BOOST_CONTRACT_HEADER_ONLY` documentation for more information).

### Build Status

Expand All @@ -28,13 +28,14 @@ Branch | Travis | Appveyor | Coverity Scan | codecov.io | Deps | Docs |
| `doc` | Documentation |
| `example` | Examples |
| `include` | Header code |
| `meta` | Integration with Boost |
| `src` | Source code |
| `test` | Unit tests |

### More information
### More Information

* [Ask questions](http://stackoverflow.com/questions/ask?tags=c%2B%2B,boost,boost-contract).
* [Report bugs](https://github.com/boostorg/contract/issues): Be sure to mention Boost version, platform and compiler you're using. A small compilable code sample to reproduce the problem is always good as well.
* [Report bugs](https://github.com/boostorg/contract/issues): Be sure to mention Boost version, platform and compiler you are using. A small compilable code sample to reproduce the problem is always good as well.
* Submit your patches as pull requests against **develop** branch. Note that by submitting patches you agree to license your modifications under the [Boost Software License, Version 1.0](http://www.boost.org/LICENSE_1_0.txt).
* Discussions about the library are held on the [Boost developers mailing list](http://www.boost.org/community/groups.html#main). Be sure to read the [discussion policy](http://www.boost.org/community/policy.html) before posting and add the `[contract]` tag at the beginning of the subject line.
* Discussions about the library are held on the [Boost developers mailing list](http://www.boost.org/community/groups.html#main). Be sure to read the [discussion policy](http://www.boost.org/community/policy.html) before posting and add the `[contract]` text at the beginning of the subject line.

1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,4 @@ test_script:
- IF NOT DEFINED SCRIPT (ECHO b2 libs/%SELF:\=/% %B2_TOOLCXX% %B2_CXXFLAGS% %B2_DEFINES% %B2_THREADING% %B2_ADDRESS_MODEL% %B2_LINK% %B2_THREADING% %B2_VARIANT% -j3)
# Now go build...
- IF DEFINED SCRIPT (call libs\%SELF%\%SCRIPT%) ELSE (b2 libs/%SELF:\=/% %B2_TOOLCXX% %B2_CXXFLAGS% %B2_DEFINES% %B2_THREADING% %B2_ADDRESS_MODEL% %B2_LINK% %B2_THREADING% %B2_VARIANT% -j3)

0 comments on commit f21fc7d

Please sign in to comment.