My configuration files for Debian/Ubuntu applications
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 694 B

12345678910111213141516171819
  1. # generic packages and tmux
  2. before_install:
  3. - sudo apt-get update
  4. - sudo apt-get install -y git-core expect
  5. - sudo apt-get install -y python-software-properties software-properties-common
  6. - sudo apt-get install -y libevent-dev libncurses-dev
  7. - git clone https://github.com/tmux/tmux.git
  8. - cd tmux
  9. - git checkout 2.0
  10. - sh autogen.sh
  11. - ./configure && make && sudo make install
  12. install:
  13. - git fetch --unshallow --recurse-submodules || git fetch --recurse-submodules
  14. # manual `git clone` required for testing `tmux-test` plugin itself
  15. - git clone https://github.com/tmux-plugins/tmux-test lib/tmux-test; true
  16. - lib/tmux-test/setup
  17. script: ./tests/run_tests_in_isolation