-
Notifications
You must be signed in to change notification settings - Fork 17
67 lines (62 loc) · 1.74 KB
/
pio_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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Build examples with Platformio
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# https://docs.platformio.org/en/latest/integration/ci/github-actions.html
name: PlatformIO CI
on:
workflow_dispatch: # Manual start
push:
branches: [ master, feat ]
paths:
- '**.cpp'
- '**.hpp'
- '**.h'
- '**.c'
- '**.ini'
- '**.yml'
pull_request:
branches: [ master]
paths:
- '**.cpp'
- '**.hpp'
- '**.h'
- '**.c'
- '**.ini'
- '**.yml'
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'vortigont/espem'
strategy:
matrix:
code:
- "."
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Platformio
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
#platformio run -t buildfs
#platformio pkg update
- name: Patch Platformio
run: |
pwd
echo "REPO_NAME=$(basename ${{ github.repository }})" >> $GITHUB_ENV
cd $(dirname $(which pio) )
cd ../
echo $(find -type d -name site-packages)
cd $(find -type d -name site-packages)
pwd
git apply --verbose $GITHUB_WORKSPACE/extra/0001-LDF-refresh-lib-dependency-after-recursive-search.patch
cd $GITHUB_WORKSPACE
- name: Run PlatformIO
run: |
pio run -e espem -e espem_debug
# env:
# PLATFORMIO_CI_SRC: ${{ matrix.code }}
# run: |
# pio ci -c ${{ matrix.code }}/platformio.ini