-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
51 lines (48 loc) · 2.41 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
# use new docker environment
sudo: required
language: cpp
before_install:
- docker pull polybassa/pmd:latest
script:
- cd utilities
- ./configureWithDocker.sh project
- ./makeWithDocker.sh project test
- ./makeWithDocker.sh project clean
- ./makeWithDocker.sh project firmware
- ./makeWithDocker.sh project clean
- ./makeWithDocker.sh project debug_firmware
- ./makeWithDocker.sh project clean-all
- ./configureWithDocker.sh project_tunnel
- ./makeWithDocker.sh project_tunnel test
- ./makeWithDocker.sh project_tunnel clean
- ./makeWithDocker.sh project_tunnel firmware
- ./makeWithDocker.sh project_tunnel clean-all
- ./configureWithDocker.sh project_maco
- ./makeWithDocker.sh project_maco test
- ./makeWithDocker.sh project_maco clean
- ./makeWithDocker.sh project_maco firmware
- ./makeWithDocker.sh project_maco clean
- ./makeWithDocker.sh project_maco debug_firmware
- ./makeWithDocker.sh project_maco clean-all
- ./configureWithDocker.sh project_bluepill
- ./makeWithDocker.sh project_bluepill test
- ./makeWithDocker.sh project_bluepill clean
- ./makeWithDocker.sh project_bluepill firmware
- ./makeWithDocker.sh project_bluepill clean
- ./makeWithDocker.sh project_bluepill debug_firmware
- ./makeWithDocker.sh project_bluepill clean-all
- ./configureWithDocker.sh project_bluepill_horrorscope
- ./makeWithDocker.sh project_bluepill_horrorscope test
- ./makeWithDocker.sh project_bluepill_horrorscope clean
- ./makeWithDocker.sh project_bluepill_horrorscope firmware
- ./makeWithDocker.sh project_bluepill_horrorscope clean
- ./makeWithDocker.sh project_bluepill_horrorscope debug_firmware
- ./makeWithDocker.sh project_bluepill_horrorscope clean-all
- ./configureWithDocker.sh project_stm32f4_discovery
- ./makeWithDocker.sh project_stm32f4_discovery uncrustify
- ./makeWithDocker.sh project_stm32f4_discovery test
- ./makeWithDocker.sh project_stm32f4_discovery clean
- ./makeWithDocker.sh project_stm32f4_discovery firmware
- ./makeWithDocker.sh project_stm32f4_discovery clean
- ./makeWithDocker.sh project_stm32f4_discovery debug_firmware
- ./makeWithDocker.sh project_stm32f4_discovery clean-all