diff options
author | Přemysl Janouch <p@janouch.name> | 2018-06-21 22:47:33 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-06-21 23:46:03 +0200 |
commit | fab5115cd09a44244a7c681fa5ab79d047a94d4f (patch) | |
tree | 8ae034790f21262231f757d847ecccaf2a2e435c /.travis.yml | |
parent | d0cb3c1ac62a7834db7cf205a686e69a2a81ff2c (diff) | |
download | xK-fab5115cd09a44244a7c681fa5ab79d047a94d4f.tar.gz xK-fab5115cd09a44244a7c681fa5ab79d047a94d4f.tar.xz xK-fab5115cd09a44244a7c681fa5ab79d047a94d4f.zip |
Remove .travis.yml
We don't depend on any proprietary services no longer. I'll have to
make my own replacements with blackjack and hookers. Until then,
the file stays in the commit log as an example.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index dbd519b..0000000 --- a/.travis.yml +++ /dev/null @@ -1,50 +0,0 @@ -sudo: required -dist: trusty -language: c -notifications: - irc: - channels: "irc.janouch.name#dev" - use_notice: true - skip_join: true - template: - - "%{repository_name}#%{build_number} on %{branch}: %{message}" - - " %{compare_url}" - - " %{build_url}" - on_success: change - on_failure: always -env: - global: - - secure: "ck6keK5tTbVCN7VGyKglS890hjovUNt2zyOydiyFtQDciaB/rvEwkKy4anMCEdZHFpGAPE9iBmNYaGUsD1Y+KifhhImVMbuThe2D8MLv5crSLRheYPbbmhO8MWPAxmQnuQhpwsUKZlHvUfX8nh+d0juNdqXklvhVml78Gi99QFw=" - matrix: - - readline=ON libedit=OFF - - readline=OFF libedit=ON -addons: - coverity_scan: - project: - name: "pjanouch/uirc3" - description: "Experimental IRC client, daemon and bot" - notification_email: p.janouch@gmail.com - build_command_prepend: "cmake .. -DCMAKE_BUILD_TYPE=Release" - build_command: "make" - branch_pattern: coverity_scan -compiler: - - clang - - gcc -before_install: - # We need this PPA for a recent version of libedit - - sudo add-apt-repository ppa:ondrej/php -y - # We need this PPA for Lua 5.3 - - sudo add-apt-repository ppa:vbernat/haproxy-1.6 -y - - sudo apt-get update -qq -install: - - sudo apt-get install -y libncursesw5-dev libreadline-dev libedit-dev - liblua5.3-dev libffi-dev help2man expect -before_script: - - mkdir build - - cd build -script: - - cmake .. -DCMAKE_INSTALL_PREFIX=/usr - -DWANT_READLINE=$readline -DWANT_LIBEDIT=$libedit - - make all test - - cpack -G DEB - - ../test |