forked from SanderMertens/bake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (44 loc) · 865 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
49
language: c
matrix:
include:
- os: linux
sudo: required
dist: trusty
compiler: gcc
- os: linux
sudo: required
dist: trusty
compiler: clang
- os: linux
sudo: required
dist: xenial
compiler: gcc
- os: linux
sudo: required
dist: xenial
compiler: clang
- os: osx
sudo: required
compiler: gcc
- os: osx
sudo: required
compiler: clang
install:
- make -C build-$(uname)
- ./bake setup
script:
- bake examples
- bake examples
- bake examples --cfg release
- bake examples --cfg release
- bake list
- bake clone SanderMertens/example
- bake run example
- bake run example --cfg release
- bake new foo
- bake run foo
- bake run foo --cfg release
- bake new my_template --template
- bake new my_tmpl_app -t my_template
- bake run my_tmpl_app
- bake upgrade