tmux-resurrect/.travis.yml

20 lines
694 B
YAML
Raw Normal View History

2017-05-30 03:04:08 +00:00
# generic packages and tmux
2015-02-22 15:26:53 +00:00
before_install:
- sudo apt-get update
- sudo apt-get install -y git-core expect
- sudo apt-get install -y python-software-properties software-properties-common
2017-05-30 03:04:08 +00:00
- sudo apt-get install -y libevent-dev libncurses-dev
- git clone https://github.com/tmux/tmux.git
- cd tmux
- git checkout 2.5
- sh autogen.sh
- ./configure && make && sudo make install
2015-02-22 15:26:53 +00:00
2015-02-22 23:42:14 +00:00
install:
- git fetch --unshallow --recurse-submodules || git fetch --recurse-submodules
2017-05-30 03:04:08 +00:00
# manual `git clone` required for testing `tmux-test` plugin itself
- git clone https://github.com/tmux-plugins/tmux-test lib/tmux-test; true
2015-02-22 23:42:14 +00:00
- lib/tmux-test/setup
2015-02-22 15:26:53 +00:00
script: ./tests/run_tests_in_isolation