Skip to content

Update 4_Display.h #664

Update 4_Display.h

Update 4_Display.h #664

Workflow file for this run

name: Rflink Build Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio==6.1.5
pio update
pip install esptool
- name: Make a BUILDNAME
run: echo "RFLINK_BUILDNAME=\"$(date '+%Y%m%d-%H%M%S')-${GITHUB_REF#refs/heads/}\"" >> $GITHUB_ENV
- name: ESP32_none_enabled
run: |
echo "buid name $RFLINK_BUILDNAME"
pio run --project-conf .travis.platformio.ini --environment ESP32_none_enabled
- name: ESP32_sw
run: |
pio run --project-conf .travis.platformio.ini --environment ESP32_sw
- name: sonoff_bridge
run: |
pio run --project-conf .travis.platformio.ini --environment sonoff_bridge
- name: Copy firmwares in 1 place
if: github.event_name == 'push'
run: |
mkdir firmwares
cp .pio/build/ESP32_sw/bootloader.bin firmwares/bootloader_dio_40m.bin
cp .pio/build/ESP32_sw/firmware.bin firmwares/esp32-firmware-OTA.bin
cp .pio/build/ESP32_sw/partitions.bin firmwares/esp32-partitions.bin
cp .pio/build/sonoff_bridge/firmware.bin firmwares/sonoff_bridge-firmware.bin
cd firmwares
cp /home/runner/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin .
python ../tools/esp32-makeimg.py bootloader_dio_40m.bin esp32-partitions.bin boot_app0.bin esp32-firmware-OTA.bin esp32-full.img
cd ..
- name: Publish firmware for Master branch
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "nightly"
prerelease: true
title: "Latest *almost* stable Build"
files: |
firmwares/*
- name: Publish firmware for rtl_433 branch
if: github.ref == 'refs/heads/rtl_433' && github.event_name == 'push'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "nightly-RTL_433"
prerelease: true
title: "RTL_433 Development Build"
files: |
firmwares/*
- name: Publish firmware for testing-only branch
if: github.ref == 'refs/heads/testing-only' && github.event_name == 'push'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "nightly-testing-only"
prerelease: true
title: "TESTING ONLY - ONLY USE IF INSTRUCTED BY SOMEONE"
files: |
firmwares/*