Skip to content

Support for Overlays when SPILCD driver used #693

Support for Overlays when SPILCD driver used

Support for Overlays when SPILCD driver used #693

Workflow file for this run

name: Firmware build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
permissions:
contents: read
jobs:
# normal builds
build_main:
runs-on: ubuntu-20.04
strategy:
# devices to build for
matrix:
board: [LINUX, ESP32, ESP8266_BOARD, ESP8266_4MB, MICROBIT1, MICROBIT2]
# try and build for all devices even if one fails
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: make ${{ matrix.board }}
env:
TRAVIS: 1
RELEASE: 1
BOARD: ${{ matrix.board }}
UPLOADTOKEN: ${{ secrets.UPLOADTOKEN }}
run: |
source ./scripts/provision.sh ${{ matrix.board }}
make
./scripts/ci_upload.sh
- name: Upload ${{ matrix.board }} build artifact
uses: actions/[email protected]
with:
name: ${{ matrix.board }}
path: |
bin/*.bin
bin/*.hex
bin/*.tgz
bin/*.zip
# Builds with DFU_UPDATE_BUILD=1
build_dfu:
runs-on: ubuntu-20.04
strategy:
# devices to build for
matrix:
board: [PUCKJS, PIXLJS, MDBT42Q, BANGLEJS, BANGLEJS2, PUCKJS_MINIMAL]
# try and build for all devices even if one fails
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: make ${{ matrix.board }}
env:
TRAVIS: 1
RELEASE: 1
DFU_UPDATE_BUILD: 1
BOARD: ${{ matrix.board }}
UPLOADTOKEN: ${{ secrets.UPLOADTOKEN }}
run: |
source ./scripts/provision.sh ${{ matrix.board }}
make
./scripts/ci_upload.sh
- name: Upload ${{ matrix.board }} build artifact
uses: actions/[email protected]
with:
name: ${{ matrix.board }}
path: |
bin/*.bin
bin/*.hex
bin/*.tgz
bin/*.zip
# Builds with PAD_FOR_BOOTLOADER=1
build_padded:
runs-on: ubuntu-20.04
strategy:
# devices to build for
matrix:
board: [ESPRUINOBOARD, PICO_R1_3, ESPRUINOWIFI]
# try and build for all devices even if one fails
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: make ${{ matrix.board }}
env:
TRAVIS: 1
RELEASE: 1
PAD_FOR_BOOTLOADER: 1
BOARD: ${{ matrix.board }}
UPLOADTOKEN: ${{ secrets.UPLOADTOKEN }}
run: |
source ./scripts/provision.sh ${{ matrix.board }}
make
./scripts/ci_upload.sh
- name: Upload ${{ matrix.board }} build artifact
uses: actions/[email protected]
with:
name: ${{ matrix.board }}
path: |
bin/*.bin
bin/*.hex
bin/*.tgz
bin/*.zip
# Disable doc building for now
# docs:
# runs-on: ubuntu-20.04
# steps:
# - name: makedocs
# run: make docs