mirror of
https://github.com/lenticularis39/axpbox.git
synced 2026-01-11 23:53:28 +00:00
15 lines
331 B
YAML
15 lines
331 B
YAML
language: cpp
|
|
dist: focal
|
|
compiler: clang
|
|
|
|
before_install: sudo apt-get install cmake libpcap-dev libsdl-dev netcat-openbsd
|
|
install:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-Wall -Werror"
|
|
- make
|
|
- cd ..
|
|
script:
|
|
- test/run
|
|
|