26 lines
659 B
YAML
26 lines
659 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: docker:git
|
|
commands:
|
|
- git submodule update --recursive --init
|
|
- name: build left, debug
|
|
image: hardwario/gcc-arm-embedded:7-2017-q4-major
|
|
commands:
|
|
- make -j2 -C left DEBUG=1
|
|
- name: build left
|
|
image: hardwario/gcc-arm-embedded:7-2017-q4-major
|
|
commands:
|
|
- make -j2 -C left DEBUG=0
|
|
- name: build right, debug
|
|
image: hardwario/gcc-arm-embedded:7-2017-q4-major
|
|
commands:
|
|
- make -j2 -C right DEBUG=1
|
|
- name: build right
|
|
image: hardwario/gcc-arm-embedded:7-2017-q4-major
|
|
commands:
|
|
- make -j2 -C right DEBUG=0
|