set 8MHz as default for HUB75 I2S clock rate #434
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CI Build runner 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 | |
# env vars https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables | |
# work dir /home/runner/work/FireLamp_JeeUI/FireLamp_JeeUI | |
name: PlatformIO test builds | |
on: | |
workflow_dispatch: # Manual start | |
pull_request: | |
branches: [ master] | |
paths: | |
- '**.cpp' | |
- '**.hpp' | |
- '**.h' | |
- '**.c' | |
#paths-ignore: | |
# - '.github/**' | |
# push: | |
# branches: [ master, feat ] | |
# paths: | |
# - '**.c' | |
# - '**.cpp' | |
# - '**.h' | |
# - '**.hpp' | |
# - '**.ini' | |
# - '**.yml' | |
# paths-ignore: | |
# - '**.md' # Do no build if *.md files changes | |
# - 'data/**' # Ignore changes in littlefs source files | |
# - 'resources/**' # Ignore changes in web resource files | |
# one task per branch/env at a time | |
concurrency: | |
group: environment-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
esp32: | |
runs-on: ubuntu-latest | |
if: github.repository == 'vortigont/FireLamp_JeeUI' | |
continue-on-error: false | |
#strategy: | |
# matrix: | |
# variant: | |
# - esp32 | |
# - esp32debug | |
# - esp32S3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: PIP Cache | |
id: cache-pip | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-pip-pkgs | |
with: | |
path: | | |
~/.cache/pip | |
key: ${{ runner.os }}-pip-${{env.cache-name}} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: Platformio Cache | |
id: cache-pio | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-pio-pkgs | |
with: | |
path: | | |
~/.platformio/platforms | |
~/.platformio/packages | |
key: ${{ runner.os }}-pio-${{env.cache-name}} | |
restore-keys: | | |
${{ runner.os }}-pio- | |
# Linux-pio-cache-pio-pkgs, Linux-pio-, Linux- | |
- 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 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 build | |
run: | | |
platformio run -e esp32 -e esp32debug -e esp32S3 | |
#platformio run -e ${{ matrix.variant }} |