142ecdaf
rguillom
first commit
|
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
57
58
|
kind: pipeline
name: Documentation (Arch)
platform:
os: linux
arch: amd64
steps:
- name: Build Documentation
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
pull: always
commands:
- make --quiet -C Maintenance upgrade-doxygen
- make --quiet doxygen
---
kind: pipeline
name: Build (Arch)
platform:
os: linux
arch: amd64
steps:
- name: Build Tests
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
pull: always
commands:
- ln -s /bin/true /sbin/avr32-gcc
- make --quiet -C BuildTests all
- name: Projects
image: abcminiuser/docker-ci-avr8-toolchain:latest-arch
commands:
- make --quiet all
---
kind: pipeline
name: Build (Ubuntu)
platform:
os: linux
arch: amd64
steps:
- name: Build Tests
image: abcminiuser/docker-ci-avr8-toolchain:latest
pull: always
commands:
- ln -s /bin/true /sbin/avr32-gcc
- make --quiet -C BuildTests all
- name: Projects
image: abcminiuser/docker-ci-avr8-toolchain:latest
commands:
- make --quiet all
|