about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEudald Gubert i Roldan <hola@eudald.gr>2020-04-07 12:44:51 +0200
committerEudald Gubert i Roldan <hola@eudald.gr>2020-04-07 12:44:51 +0200
commit12469b941ae62b33ee9ec2626541210334218801 (patch)
tree28d311f3b6aea8e991293504f50de6f40af6ed81
parent5311a718a94ab3b6d4c86d3a7f04787faca30f70 (diff)
downloadbtpd-12469b941ae62b33ee9ec2626541210334218801.tar.gz
btpd-12469b941ae62b33ee9ec2626541210334218801.zip
update with evloop's methods
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 58dc9eb..8fe1415 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,11 @@ os:
     - linux
 compiler:
     - gcc
+env:
+    - METHOD=POLL
+    - METHOD=EPOLL
 before_install:
     - sudo apt update
     - sudo apt -y install openssl
 script:
-    ./configure && make
+    ./configure --with-evloop-method=${METHOD} && make