Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

ECL no longer maintained #1034

ECL no longer maintained

ECL no longer maintained #1034

Workflow file for this run

name: Build Tests
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
Linux-GCC:
runs-on: ubuntu-latest
container: px4io/px4-dev-base-focal:2021-05-04
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:2021-05-04
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