Compare commits

...

20 Commits

Author SHA1 Message Date
Thomas Ballmann c96382c8f0 finalize github actions 3 years ago
Thomas Ballmann 9185ea0487
Update firmware.yml 3 years ago
Thomas Ballmann d5cb6d983b
Update firmware.yml 3 years ago
Thomas Ballmann f87819a418
Update build-platformio.sh 3 years ago
Thomas Ballmann 40bfde6f08
Create build-platformio.sh 3 years ago
Thomas Ballmann b4ff7675a4
Update firmware.yml 3 years ago
Thomas Ballmann cba2aecb12
Create build-platformio.sh 3 years ago
Thomas Ballmann 0e80a4bbc1
Update firmware.yml 3 years ago
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
Thomas Ballmann 563760a3e9
Create app.yml 3 years ago

@ -0,0 +1,34 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build APP
on:
push:
paths:
- 'app/**'
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app
strategy:
matrix:
node-version: [12.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm run-script build

@ -0,0 +1,40 @@
# 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: windows-latest # 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: 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

@ -6,8 +6,10 @@
[![Generic badge](https://img.shields.io/badge/APP-1.0-orange.svg?logo=vuetify)]()
[![Generic badge](https://img.shields.io/badge/3D_Housing-1.0-orange.svg?logo=makerbot)](https://www.thingiverse.com/thing:4724292)
![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)
[![Build Firmware](https://github.com/paperdash/device-epd/actions/workflows/firmware.yml/badge.svg)](https://github.com/paperdash/device-epd/actions/workflows/firmware.yml)
[![Build APP](https://github.com/paperdash/device-epd/actions/workflows/app.yml/badge.svg)](https://github.com/paperdash/device-epd/actions/workflows/app.yml)
![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)
## Open Source E-Paper Display Platform
@ -98,4 +100,4 @@ $ platformio run --target uploadfs
# alternative, create spiffs.bin
$ platformio run --target buildfs
```
```

Loading…
Cancel
Save