You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: edy555/arm-embedded:4.9
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: "Pull Submodules"
|
|
command: |
|
|
git submodule init
|
|
git submodule update --remote
|
|
- run:
|
|
name: "Build Firmware"
|
|
command: make
|
|
- store_artifacts:
|
|
path: build/ch.elf
|
|
destination: .
|