A clone of btpd with my configuration changes.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
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