Skip to content

remove verbose messages from command line mqtt2bufr #87

remove verbose messages from command line mqtt2bufr

remove verbose messages from command line mqtt2bufr #87

Workflow file for this run

name: stima_v4
on:
push:
paths:
- 'platformio/stima_v4/**.ino'
- 'platformio/stima_v4/**.cpp'
- 'platformio/stima_v4/**.hpp'
- 'platformio/stima_v4/**.c'
- 'platformio/stima_v4/**.h'
- 'platformio/stima_v4/**platformio.ini'
- '**stima_v4.yml'
# branches: [ master ]
pull_request:
workflow_dispatch:
jobs:
main:
name: firmware
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
#with:
# ref: explorer
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: '3.x'
- name: Install Platform IO
run: |
python -m pip install --upgrade pip
pip install -U platformio
# Runs a set of commands using the runners shell
- name: Build Stima V4 master
run: |
cd platformio/stima_v4/master
platformio run
- name: Build Stima V4 slave-mppt
run: |
cd platformio/stima_v4/slave-mppt
platformio run
- name: Build Stima V4 slave-radiation
run: |
cd platformio/stima_v4/slave-radiation
platformio run
- name: Build Stima V4 slave-rain
run: |
cd platformio/stima_v4/slave-rain
platformio run
- name: Build Stima V4 slave-th
run: |
cd platformio/stima_v4/slave-th
platformio run
- name: Build Stima V4 slave-vwc
run: |
cd platformio/stima_v4/slave-vwc
platformio run
- name: Build Stima V4 slave-wind
run: |
cd platformio/stima_v4/slave-wind
platformio run