-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.travis.yml.disabled
More file actions
56 lines (43 loc) · 1015 Bytes
/
.travis.yml.disabled
File metadata and controls
56 lines (43 loc) · 1015 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
44
45
46
47
48
49
50
51
52
53
54
55
56
language: cpp
git:
submodules: false
branches:
only:
- /.*/
notifications:
email:
recipients:
- scrgiorgio@gmail.com
on_success: always
on_failure: always
env:
global:
- TEST_VALUE=aaa
# see https://stackoverflow.com/questions/46575415/can-i-multiply-options-in-matrix-include-with-the-env-option
matrix:
fast_finish: false
include:
- os: osx
osx_image: xcode13.1 # see https://docs.travis-ci.com/user/reference/osx/#macos-version
compiler: clang
env: PYTHON_VERSION=3.7 BOGUS_VALUE='bla'
script: |
set -ex
uname -a
env
- os: windows
env: PYTHON_VERSION=3.7 BOGUS_VALUE='bla'
script: |
set -ex
uname -a
env
- os: linux
dist: focal
sudo: required
services:
- docker
env: PYTHON_VERSION=3.7 BOGUS_VALUE='bla'
script: |
set -ex
uname -a
env