A clone of btpd with my configuration changes.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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