forked from rancilio-pid/clevercoffee
-
Notifications
You must be signed in to change notification settings - Fork 14
35 lines (31 loc) · 968 Bytes
/
platformio-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Test build
on: [push, pull_request]
jobs:
nodemcuv2_ota:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add config file
working-directory: ./rancilio-pid
run: cp userConfig.h.SAMPLE userConfig.h
- name: PlatformIO Run nodemcuv2_ota
uses: karniv00l/platformio-run-action@v1
with:
environments: "nodemcuv2_ota"
silent: false
verbose: true
esp32_ota_LIVE:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add config file
working-directory: ./rancilio-pid
run: cp userConfig.h.SAMPLE userConfig.h
- name: PlatformIO Run esp32_ota_LIVE
uses: karniv00l/platformio-run-action@v1
with:
environments: "esp32_ota_LIVE"
silent: false
verbose: true