mirror of
https://github.com/qicosmos/rest_rpc.git
synced 2026-08-29 08:34:47 +08:00
28 lines
466 B
YAML
28 lines
466 B
YAML
language: cpp
|
|
dist: trusty
|
|
os: linux
|
|
compiler:
|
|
- gcc
|
|
|
|
jobs:
|
|
include:
|
|
- env: COMPILER=g++-8 BUILD=Release STANDARD=17
|
|
compiler: gcc
|
|
addons:
|
|
apt:
|
|
update: true
|
|
sources:
|
|
- sourceline: 'ppa:mhier/libboost-latest'
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-8
|
|
- boost1.67
|
|
- cmake
|
|
|
|
script:
|
|
- cd examples
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
- make
|