-
Notifications
You must be signed in to change notification settings - Fork 33
42 lines (34 loc) · 916 Bytes
/
platformio.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
36
37
38
39
40
41
42
name: Platform IO
on:
push:
branches: []
pull_request:
branches: []
schedule:
- cron: "0 1 * * 6" # Every Saturday at 1AM
jobs:
build:
strategy:
fail-fast: false
matrix:
feature: ["arduino2", "arduino2-ssl", "arduino2-regex", "arduino3", "arduino3-ssl", "arduino3-regex"]
runs-on: ubuntu-latest
name: Build ${{ matrix.feature }}
steps:
- uses: actions/checkout@v4
- name: Set up Pythonf
uses: actions/setup-python@v4
- name: Install Platform IO
run:
|
pip install -U platformio
platformio update
- name: Install Checked out PsychicHttp
run:
pio lib -g install $GITHUB_WORKSPACE
- name: Build ${{ matrix.feature }}
run:
|
cd examples/platformio
cp src/secret.h src/_secret.h
pio run -e ${{ matrix.feature }}