aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: de69a3e353aa9a3de891af3f0fd3560ff409e3ee (plain)
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
kind: pipeline
name: Arch

steps:
- name: Documentation
  image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
  commands:
  - make --quiet -C Maintenance upgrade-doxygen
  - make --quiet doxygen

- name: Projects
  image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
  commands:
  - make -j --quiet all

- name: Build Tests
  image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
  commands:
  - make --quiet -C BuildTests all

# ----

kind: pipeline
name: Ubuntu

steps:
- name: Projects
  image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
  commands:
  - make -j --quiet all

- name: Build Tests
  image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
  commands:
  - make --quiet -C BuildTests all