about summary refs log tree commit diff
path: root/.travis.yml
blob: 8fe1415b4f3dba0a4b8ea65d58274488a7ed950b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: c
os:
    - linux
compiler:
    - gcc
env:
    - METHOD=POLL
    - METHOD=EPOLL
before_install:
    - sudo apt update
    - sudo apt -y install openssl
script:
    ./configure --with-evloop-method=${METHOD} && make