You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
632 B
YAML
45 lines
632 B
YAML
language: c
|
|
|
|
jobs:
|
|
include:
|
|
- os: linux
|
|
dist: bionic
|
|
compiler: gcc
|
|
- os: linux
|
|
dist: bionic
|
|
compiler: clang
|
|
- os: linux
|
|
dist: focal
|
|
compiler: gcc
|
|
- os: linux
|
|
dist: focal
|
|
compiler: clang
|
|
- os: linux
|
|
dist: jammy
|
|
compiler: gcc
|
|
- os: linux
|
|
dist: jammy
|
|
compiler: clang
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- make
|
|
- gcc-multilib
|
|
- libpcap0.8
|
|
- libpcap0.8-dev
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.ccache
|
|
|
|
before_script:
|
|
- make clean
|
|
|
|
script:
|
|
- make
|
|
- ./xl2tpd-control --version
|
|
- ./xl2tpd-control --help
|