Skip to content

Commit

Permalink
[CI] initial
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi322 committed Sep 9, 2024
1 parent c289ac7 commit f0cb51e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: PlatformIO CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Build Firmware
run: |
cd firmware
pio run
mkdir bin
mv .pio/build/smif/firmware.bin bin/smif-ESP32-S3.bin
mv .pio/build/saola/firmware.bin bin/smif-ESP32-S2.bin
- name: Build Filesystem
run: |
cd firmware
mkdir emptyffs
$HOME/.platformio/packages/tool-mkspiffs/mkspiffs_espressif32_arduino -c $PWD/emptyffs/ -s 0x20000 $PWD/bin/varfs.bin
$HOME/.platformio/packages/tool-mkspiffs/mkspiffs_espressif32_arduino -c $PWD/data/ -s 0x20000 $PWD/.pio/build/mainfs.bin
- name: Upload Artifacts
uses: actions/upload-artifact
with:
name: Firmware-Filesystem
path: firmware/bin

0 comments on commit f0cb51e

Please sign in to comment.