mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
27 lines
445 B
YAML
27 lines
445 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
ubuntu_release: [
|
|
bionic,
|
|
focal
|
|
]
|
|
container: px4io/px4-dev-base-${{ matrix.ubuntu_release }}:2020-04-01
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
- name: make
|
|
run: make
|