-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (36 loc) · 936 Bytes
/
.travis.yml
File metadata and controls
43 lines (36 loc) · 936 Bytes
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
language: bash
# Doc
# - Travis Job Lifecycle : https://docs.travis-ci.com/user/job-lifecycle/
matrix:
include:
- name: "Linux Debug"
os: linux
dist: focal
env:
- BUILD_NAME="linux-macos"
- MODE=Debug
- name: "MacOS Debug"
os: osx
osx_image: xcode12.2
env:
- BUILD_NAME="linux-macos"
- MODE=Debug
# too long installation
# - CC=/usr/local/opt/llvm/bin/clang-11
# - CXX=/usr/local/opt/llvm/bin/clang-11
#addons:
# homebrew:
# # update: true
# packages:
# - llvm@11
- name: "Windows Debug"
os: windows
env:
- BUILD_NAME="windows"
- MODE=Debug
install:
- ${TRAVIS_BUILD_DIR}/.travis-ci/${BUILD_NAME}/install.sh
before_script:
- ${TRAVIS_BUILD_DIR}/.travis-ci/${BUILD_NAME}/before_script.sh
script:
- ${TRAVIS_BUILD_DIR}/.travis-ci/${BUILD_NAME}/build.sh