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.
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_in_ubuntu_bionic:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: px4io/px4-dev-base-bionic:2020-03-28
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
|
|
- name: make
|
|
|
|
run: make
|
|
|
|
build_in_ubuntu_focal:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: px4io/px4-dev-base-focal:2020-03-28
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
|
|
- name: make
|
|
|
|
run: make
|