mirror of
https://github.com/wjwwood/serial.git
synced 2026-01-22 03:34:53 +08:00
* reduce the number of jobs on travis * update usage of pip due to changes in Homebrew * update pip and ensure the right one is being used with an alias * force reinstall pip to get `pip` on PATH * use python2 explicitly to run catkin_make * force use of python2 executable by catkin packages * python! * simpler * how to which * Update .travis.yml * make tests and run_tests * test results * disable timer tests on macOS
11 lines
240 B
YAML
11 lines
240 B
YAML
os:
|
|
- linux
|
|
- osx
|
|
language: cpp
|
|
install:
|
|
- make install_deps
|
|
- source setup.bash
|
|
script:
|
|
- mkdir build && cd build && cmake .. -DPYTHON_EXECUTABLE=$(which python2) && make && make tests && make run_tests
|
|
- catkin_test_results .
|