Skip to content

Build issue #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
54ac79b
Merge experimental & src folders (#435)
benjchristensen May 16, 2017
8726d31
fixing yarpl dependency (#436)
lehecka May 16, 2017
8b16bbf
fixing memory leaking tests (#437)
lehecka May 17, 2017
e6cf8c2
fixing compiler issues for gcc 6.0 (#438)
lehecka May 17, 2017
5da63ff
Make debug default in cmake (#439)
lehecka May 17, 2017
73b463a
Simplify ResumeCache (#423)
May 17, 2017
de4b84b
Fix ASAN issue in unit test (#440)
lehecka May 17, 2017
9c9127a
Eliminate ReactiveSocket.h (#442)
benjchristensen May 17, 2017
840633e
ConnectionSetupPayload -> RSocketParameters
benjchristensen May 17, 2017
ffd145a
Stream state machines to their proper home
benjchristensen May 17, 2017
f823e11
ResumeCache to internal folder
benjchristensen May 17, 2017
498b14b
Stats -> /src/RSocketStats
benjchristensen May 17, 2017
93f7577
state machne naming
benjchristensen May 17, 2017
948764f
reactivesocket -> rsocket
benjchristensen May 17, 2017
637efb1
Merge pull request #443 from benjchristensen/file-org
benjchristensen May 17, 2017
f154f0c
clang format everything (#444)
benjchristensen May 17, 2017
652d93c
Purge Obsolete Unit Tests (#445)
benjchristensen May 17, 2017
2dce62c
Start of RequestResponse Unit Test (#446)
benjchristensen May 17, 2017
2d1b7e7
Disable ASAN for yarpl-tests on macOS (#449)
alexmalyshev May 17, 2017
7230298
Make yarpl depend on pthreads (#452)
alexmalyshev May 18, 2017
3542381
Hopefully fix RSocketStateMachine leak (#451)
alexmalyshev May 18, 2017
82608ce
Fix build on Arch (#450)
alexmalyshev May 18, 2017
2e7760c
Threading safety (#453)
lehecka May 18, 2017
336d88e
RequestResponse Test and SingleTestObserver (#454)
benjchristensen May 18, 2017
f4f1c2d
Async RequestStream test (#455)
benjchristensen May 18, 2017
38161b5
Fixing yarpl tests (#456)
lehecka May 18, 2017
fedac27
removing unused methods from RequestHandler (#457)
lehecka May 18, 2017
bdb5591
disabling broken tcp tests (#459)
lehecka May 18, 2017
dbf7fe9
TcpDuplexConnection supports multiple subscribes (#458)
lehecka May 18, 2017
d08889d
replacing initializer list with ctor (#460)
lehecka May 18, 2017
43db4a4
Flowables::fromGenerator operator (#461)
lehecka May 18, 2017
e33c6ca
disable asan for gcc5 and gcc6
lehecka May 19, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ matrix:
sources:
- ubuntu-toolchain-r-test

- env: GCC_VERSION=5 BUILD_TYPE=Debug CPP_VERSION=14 ASAN=On
- env: GCC_VERSION=5 BUILD_TYPE=Debug CPP_VERSION=14 ASAN=Off
os: linux
addons: &gcc5
apt:
Expand All @@ -40,7 +40,7 @@ matrix:
sources:
- ubuntu-toolchain-r-test

- env: GCC_VERSION=6 BUILD_TYPE=Debug CPP_VERSION=14 ASAN=On
- env: GCC_VERSION=6 BUILD_TYPE=Debug CPP_VERSION=14 ASAN=Off
os: linux
addons: &gcc6
apt:
Expand Down Expand Up @@ -78,14 +78,14 @@ script:
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_CXX_FLAGS="${CXX_FLAGS}" -DCMAKE_EXE_LINKER_FLAGS="${CXX_LINKER_FLAGS}" -DMETA_CXX_STD=$CPP_VERSION
- make -j8
- ./tests
- ./rsocket_tests
- ./experimental/yarpl/yarpl-tests
- ./yarpl/yarpl-tests
- cd ..
- ./scripts/prepare_tck_drivers.sh
- ./scripts/tck_test.sh -c cpp -s cpp
- ./scripts/tck_test.sh -c java -s java
- ./scripts/tck_test.sh -c java -s cpp
- ./scripts/tck_test.sh -c cpp -s java
# Commenting out TCK until it is upgraded to new APIs
# - ./scripts/tck_test.sh -c cpp -s cpp
# - ./scripts/tck_test.sh -c java -s java
# - ./scripts/tck_test.sh -c java -s cpp
# - ./scripts/tck_test.sh -c cpp -s java

after_success:
- if [ -n "$GCC_VERSION" ]; then lcov --directory . --capture --output-file coverage.info; fi # capture coverage info
Expand Down
Loading