forked from ROCm/rocm-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (47 loc) · 1.23 KB
/
.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
49
50
51
sudo: required
dist: trusty
language: cpp
script: cmake
matrix:
include:
# OSX
- os: osx
compiler: clang
- os: linux
compiler: gcc
addons: &gcc
apt:
packages:
- util-linux
- g++-5
- cppcheck
- clang-4.0
- clang-tidy-4.0
- realpath
- python3-pip
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
install:
- export CHECKOUT_PATH=`pwd`
# Show compiler info
- $CXX --version
- which $CXX
- $CC --version
- which $CC
- which cmake
- cmake --version
- python3 --version
- pip3 install --user 'cmakelang[YAML]'
script:
- export INSTALL_PREFIX_PATH="${TRAVIS_BUILD_DIR}/usr"
- export PATH="/Users/travis/Library/Python/3.7/bin:$PATH"
- mkdir -p "$INSTALL_PREFIX_PATH"
- cd $CHECKOUT_PATH
- cmake-lint $(find ./test -type f | grep .cmake$) $(find ./share -type f | grep .cmake$)
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_PREFIX_PATH ..
- make check
- make install
- rm -rf "$INSTALL_PREFIX_PATH"