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.
47 lines
911 B
47 lines
911 B
|
|
name: Build Tests |
|
|
|
on: |
|
push: |
|
branches: |
|
- master |
|
pull_request: |
|
branches: |
|
- '*' |
|
|
|
jobs: |
|
Linux-GCC: |
|
runs-on: ubuntu-latest |
|
container: px4io/px4-dev-base-bionic:2020-01-13 |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- name: main build |
|
run: make |
|
- name: clean build |
|
run: make clean |
|
- name: main test |
|
run: make test |
|
Linux-Clang: |
|
runs-on: ubuntu-latest |
|
container: px4io/px4-dev-clang:2019-10-24 |
|
env: |
|
CC: clang |
|
CXX: clang++ |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- name: main build |
|
run: make |
|
- name: clean build |
|
run: make clean |
|
- name: main test |
|
run: make test |
|
Mac-OS: |
|
runs-on: macos-latest |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- name: main build |
|
run: make |
|
- name: clean build |
|
run: make clean |
|
- name: main test |
|
run: make test
|
|
|