Skip to content

DifferentialPressureSensorBase: Complete combination of common code #47

DifferentialPressureSensorBase: Complete combination of common code

DifferentialPressureSensorBase: Complete combination of common code #47

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Ubuntu packages
run: sudo apt-get install autoconf-archive liblog4cxx-dev libi2c-dev
- name: Pull submodules
run: git submodule init ;
git submodule update
- name: autoreconf
run: autoreconf -iv
- name: configure
run: mkdir build; cd build; ../configure
- name: make
run: cd build; make V=1
- name: make check
run: cd build; make V=1 check