mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 14:05:06 +00:00
[travis-ci] add .travis.yml
This commit is contained in:
parent
3d694fbbe0
commit
afc41711c5
1 changed files with 28 additions and 0 deletions
28
.travis.yml
Normal file
28
.travis.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
os: linux
|
||||
sudo: required
|
||||
dist: xenial
|
||||
language: cpp
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- george-edison55-precise-backports
|
||||
packages:
|
||||
- python3
|
||||
- python3-setuptools
|
||||
- python3-pip
|
||||
- cmake-data
|
||||
- cmake
|
||||
|
||||
script:
|
||||
- python --version
|
||||
- python3 --version
|
||||
- sudo -H pip3 install --upgrade pip
|
||||
- sudo -H pip3 install -U conan
|
||||
- conan
|
||||
- conan --version
|
||||
- mkdir build-dir && cd build-dir && conan install .. --build=missing --settings compiler.libcxx=libstdc++11
|
||||
- cmake -DCMAKE_INSTALL_PREFIX="$(pwd)/root" ..
|
||||
- make
|
||||
- make test
|
||||
- make install
|
Loading…
Add table
Reference in a new issue