My configuration files for Debian/Ubuntu applications
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

20 řádky
694 B

  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