mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 08:46:45 +08:00
32 lines
552 B
YAML
Executable File
32 lines
552 B
YAML
Executable File
language: cpp
|
|
os: linux
|
|
dist: xenial
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-8
|
|
|
|
matrix:
|
|
include:
|
|
- compiler: gcc
|
|
env:
|
|
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
|
|
- compiler: clang
|
|
|
|
before_install:
|
|
- eval "${MATRIX_EVAL}"
|
|
|
|
script:
|
|
- mkdir -p ./build && cd ./build
|
|
- cmake -DCMAKE_BUILD_TYPE=Release -DLIBIPC_BUILD_TESTS=ON ..
|
|
- make -j`nproc`
|
|
- export LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH && ./bin/test-ipc
|
|
|
|
notifications:
|
|
slack:
|
|
on_success: never
|
|
on_failure: never
|