mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-05 05:32:11 +08:00
20 lines
562 B
YAML
20 lines
562 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: px4io/px4-dev-nuttx-bionic:2020-04-01
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Fetch tags
|
|
command: git fetch --tags
|
|
- run:
|
|
name: Build px4_fmu-v5_default
|
|
command: make px4_fmu-v5_default
|
|
- store_artifacts:
|
|
path: build/px4_fmu-v5_default/px4_fmu-v5_default.px4
|
|
destination: px4_fmu-v5_default.px4
|
|
- store_artifacts:
|
|
path: build/px4_fmu-v5_default/px4_fmu-v5_default.elf
|
|
destination: px4_fmu-v5_default.elf
|