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.

14 satır
225 B

  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