fdb8f99f731f33f215966577b098a9b5f295dc99
[pub/USBasp.git] / .drone.yml
1 kind: pipeline
2 name: Documentation
3
4 platform:
5 os: linux
6 arch: amd64
7
8 steps:
9 - name: Documentation
10 image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
11 commands:
12 - make --quiet -C Maintenance upgrade-doxygen
13 - make --quiet doxygen
14
15 ---
16
17 kind: pipeline
18 name: Arch
19
20 platform:
21 os: linux
22 arch: amd64
23
24 steps:
25 - name: Build Tests
26 image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
27 commands:
28 - ln -s /bin/true /sbin/avr32-gcc
29 - make --quiet -C BuildTests all
30
31 - name: Projects
32 image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
33 commands:
34 - make -j --quiet all
35
36 ---
37
38 kind: pipeline
39 name: Ubuntu
40
41 platform:
42 os: linux
43 arch: amd64
44
45 steps:
46 - name: Build Tests
47 image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
48 commands:
49 - ln -s /bin/true /sbin/avr32-gcc
50 - make --quiet -C BuildTests all
51
52 - name: Projects
53 image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
54 commands:
55 - make -j --quiet all