From 12469b941ae62b33ee9ec2626541210334218801 Mon Sep 17 00:00:00 2001 From: Eudald Gubert i Roldan Date: Tue, 7 Apr 2020 12:44:51 +0200 Subject: [PATCH] update with evloop's methods --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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