A clone of btpd with my configuration changes.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

.travis.yml 225 B

4 yıl önce
4 yıl önce
12345678910111213
  1. language: c
  2. os:
  3. - linux
  4. compiler:
  5. - gcc
  6. env:
  7. - METHOD=POLL
  8. - METHOD=EPOLL
  9. before_install:
  10. - sudo apt update
  11. - sudo apt -y install openssl
  12. script:
  13. ./configure --with-evloop-method=${METHOD} && make