Compare commits

...

11 Commits

Author SHA1 Message Date
Thomas Ballmann 032191c15a
Update firmware.yml 3 years ago
Thomas Ballmann 78535d283b
Update firmware.yml 3 years ago
Thomas Ballmann 9619bc97a0
Update firmware.yml 3 years ago
Thomas Ballmann a7eb8a7c63
Update firmware.yml 3 years ago
Thomas Ballmann c75febd976
Update firmware.yml 3 years ago
Thomas Ballmann dbd2c40fbd
Update app.yml 3 years ago
Thomas Ballmann a29df8b4f1
Update firmware.yml 3 years ago
Thomas Ballmann a71fba8e8a
Update firmware.yml 3 years ago
Thomas Ballmann 67ed590c0c
Create firmware.yml 3 years ago
Thomas Ballmann 0aef63dce7
Update app.yml 3 years ago
Thomas Ballmann aea1c0dbd3
Update app.yml 3 years ago

@ -5,18 +5,22 @@ name: Build APP
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
paths:
- 'app/**'
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [12.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:

@ -0,0 +1,54 @@
# This is a basic workflow to help you get started with Actions
name: Build Firmware
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
paths-ignore:
- 'app/**'
# pull_request:
# branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# - name: Cache pip
# uses: actions/cache@v2
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-
# - name: Cache PlatformIO
# uses: actions/cache@v2
# with:
# path: ~/.platformio
# key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
#
- name: Set up Python
uses: actions/setup-python@v1
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
# - name: Install library dependencies
# run: pio lib -g install 1
- name: Run PlatformIO
# run: platformio run
run: pio run -e esp32
Loading…
Cancel
Save