forked from giaf/blasfeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
57 lines (48 loc) · 1.29 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
52
53
54
55
sudo: required
cache:
ccache: true
jobs:
include:
- name: "Linux AMD64 Build"
arch: amd64
os: linux
dist: bionic
group: travis_latest
language: python
python: "3.6"
script:
- cd "${TRAVIS_BUILD_DIR}"/tests
- pip install jinja2
- python tester.py testset_travis_amd64.json
- name: "Linux ARM64 Build"
arch: arm64
os: linux
dist: bionic
group: travis_latest
language: python
python: "3.6"
script:
- cd "${TRAVIS_BUILD_DIR}"/tests
- pip install jinja2
- python tester.py testset_travis_arm64.json
- name: "MacOS Build"
if: branch = mac_build
os: osx
osx_image: xcode10.2
language: shell
script:
- cd "${TRAVIS_BUILD_DIR}"/tests
- python3 -m pip install --user jinja2
- python3 tester.py testset_travis.json
- name: "Windows Build"
if: branch = windows_build
os: windows
language: shell
before_install:
- choco install python --version 3.6
- python -m pip install --upgrade pip
env: PATH=/c/Python36:/c/Python36/Scripts:$PATH
script:
- cd "${TRAVIS_BUILD_DIR}"/tests
- pip install --user jinja2
- python tester.py testset_travis.json