-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (43 loc) · 948 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
dist: bionic
group: travis_latest
os: linux
language: python
addons:
apt:
sources:
- llvm-toolchain-bionic-10
- ubuntu-toolchain-r-test
packages:
- clang-10
- cmake
- ninja-build
- libstdc++-8-dev
update: true
matrix:
include:
- env: CXX=clang++-10
before_install:
- sudo apt-get -qq update
- sudo apt-get install libpulse-dev libogg-dev libvorbis-dev python3-pip python3-setuptools
install:
- sudo python3 -m pip install meson
- git clone https://github.com/SCOTT-HAMILTON/FakeLib
- cd FakeLib
- mkdir build
- meson build
- ninja -C build
- sudo ninja -C build install
- cd ..
- git clone https://github.com/p-ranav/argparse
- cd argparse
- mkdir build
- cd build
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DARGPARSE_BUILD_TESTS=ON ..
- cd ..
- ninja -C build
- sudo ninja -C build install
- cd ..
script:
- mkdir build
- meson build
- ninja -C build