Skip to content

Commit

Permalink
Delete ESP build check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
csenet committed Nov 19, 2023
1 parent 7d1ef6a commit 06ae2e2
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/esp32-cam-udp-build-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: ESP32 Cam UDP CI

on:
push:
branches:
- "main"
- "deployment"
paths:
- "hardware/esp32-cam-udp/**"
pull_request:
paths:
- "hardware/esp32-cam-udp/**"
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest
defaults:
run:
working-directory: hardware/esp32-cam-udp

steps:
- 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@v2
- 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: pio run
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: PlatformIO CI
name: ESP32 Control CI

on:
push:
branches:
- "main"
- "deployment"
paths:
- "hardware/**"
- "hardware/esp32-control/**"
pull_request:
paths:
- "hardware/**"
- "hardware/esp32-control/**"
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 06ae2e2

Please sign in to comment.