Add mult exec example #31
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #31 Add mult exec example.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has four jobs, running in parallel.
| Job | Compiler | OS | State |
|---|---|---|---|
| clang | Linux | passed | |
| gcc | Linux | passed | |
| clang | macOS | passed | |
| gcc | macOS | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | C++ |
| Operating System | Linux (Trusty), macOS |
| Compiler Versions | clang, gcc |
Build Configuration
{
"os": [
"linux",
"osx"
],
"dist": "trusty",
"cache": "ccache",
"group": "stable",
"addons": {
"apt": {
"sources": [
"ubuntu-toolchain-r-test"
],
"packages": [
"gcc-4.8",
"g++-4.8",
"clang"
]
}
},
"script": "mkdir build && cd build && cmake .. -DBUILD_TESTS=true -DBUILD_EXAMPLES=true && make && GTEST_COLOR=1 ctest -VV",
".result": "configured",
"install": [
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then brew install ccache; fi",
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then export PATH=\"/usr/local/opt/ccache/libexec:$PATH\"; fi",
"if [[ \"$TRAVIS_OS_NAME\" != \"osx\" && \"$CXX\" = \"g++\" ]]; then export CXX=\"g++-4.8\" CC=\"gcc-4.8\"; fi",
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then brew install redis; fi",
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then (redis-server&); fi"
],
"compiler": [
"clang",
"gcc"
],
"language": "cpp",
"services": [
"redis-server"
],
"before_install": [
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then brew update; fi",
"if [[ \"$TRAVIS_OS_NAME\" == \"osx\" ]]; then brew install llvm; fi"
]
}