mirror of
https://github.com/wassname/ray.git
synced 2026-08-16 11:27:09 +08:00
* Ion and Philipp's table retries * Refactor the retry struct: - Rename it from retry_struct to retry_info - Retry information contains the failure callback, not the retry callback - All functions take in retry information as an arg instead of its expanded fields * Rename cb -> callback * Remove prints * Fix compiler warnings * Change some CHECKs to greatest ASSERTs * Key outstanding callbacks hash table with timer ID instead of callback data pointer * Use the new retry API for table commands * Memory cleanup in plasma unit tests * fix Robert's comments * add valgrind for common
70 lines
1.6 KiB
YAML
70 lines
1.6 KiB
YAML
sudo: required
|
|
|
|
language: generic
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
python: "2.7"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "3.5"
|
|
- os: osx
|
|
osx_image: xcode7
|
|
python: "2.7"
|
|
- os: osx
|
|
osx_image: xcode7
|
|
python: "3.5"
|
|
- os: linux
|
|
dist: trusty
|
|
python: "2.7"
|
|
env: LINT=1
|
|
before_install:
|
|
# In case we ever want to use a different version of clang-format:
|
|
#- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
#- echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty main" | sudo tee -a /etc/apt/sources.list > /dev/null
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq clang-format-3.8
|
|
install: []
|
|
script:
|
|
- .travis/check-git-clang-format-output.sh
|
|
- os: linux
|
|
dist: trusty
|
|
python: "2.7"
|
|
env: VALGRIND=1
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq valgrind
|
|
script:
|
|
- cd src/common
|
|
- make valgrind
|
|
- cd ../..
|
|
|
|
- cd src/plasma
|
|
- make valgrind
|
|
- cd ../..
|
|
|
|
- python src/plasma/test/test.py valgrind
|
|
|
|
- python src/photon/test/test.py valgrind
|
|
|
|
install:
|
|
- ./install-dependencies.sh
|
|
- ./build.sh
|
|
|
|
- cd src/common/lib/python
|
|
- sudo python setup.py install
|
|
- cd ../../../..
|
|
|
|
- cd src/photon/lib/python
|
|
- sudo python setup.py install
|
|
- cd ../../../..
|
|
|
|
- source src/plasma/setup-env.sh
|
|
|
|
script:
|
|
- python src/common/test/test.py
|
|
- python src/plasma/test/test.py
|
|
- python src/photon/test/test.py
|