Files
firmware/.drone.yml
matthias 746ae2a09f
All checks were successful
continuous-integration/drone/push Build is passing
„.drone.yml“ ändern
2019-09-19 13:55:39 +00:00

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