Skip to content

WLED compile

WLED compile #2

Workflow file for this run

name: WLED compile
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Run PlatformIO
run: |
rm -rf /tmp/WLEDtemp/* || true
mkdir -p /tmp/WLEDtemp
wget https://github.com/Aircoookie/WLED/archive/refs/heads/main.zip -O /tmp/WLEDtemp/mm.zip
unzip /tmp/WLEDtemp/mm.zip -d /tmp/WLEDtemp
find /tmp/WLEDtemp -maxdepth 1 -mindepth 1 -name "*" -type d >> /tmp/WLEDtemp/wledfoldername
cd `cat /tmp/WLEDtemp/wledfoldername`
echo '[env:custom_build]' >>platformio.ini
echo 'extends = env:lolin_s2_mini' >>platformio.ini
echo 'build_flags = ${env:lolin_s2_mini.build_flags} -D USERMOD_AUTO_SAVE -D USERMOD_PING_PONG_CLOCK -D USERMOD_WORDCLOCK -D USERMOD_ANALOG_CLOCK -D USERMOD_ROTARY_ENCODER_UI -D USERMOD_MODE_SORT -D USERMOD_BATTERY -D RGB_ROTARY_ENCODER' >>platformio.ini
echo 'lib_deps = ' >>platformio.ini
echo ' ${env:lolin_s2_mini.lib_deps}' >>platformio.ini
echo ' olikraus/U8g2 @ ^2.28.8' >>platformio.ini
echo ' Wire' >>platformio.ini
echo ' lennarthennigs/ESP Rotary@^1.5.0' >>platformio.ini
pio run -e custom_build || pio run -e custom_build
- name: Copy Files
run: |
cd $GITHUB_WORKSPACE
git rm -r $GITHUB_WORKSPACE/*.bin || true
WLEDFOLDERNAME=`cat /tmp/WLEDtemp/wledfoldername`
cp ${WLEDFOLDERNAME}/build_output/firmware/custom_build.bin $GITHUB_WORKSPACE/
date -I | tr -d '\n' >$GITHUB_WORKSPACE/last_update_date.txt
- name: Commit Files
run: |
cd $GITHUB_WORKSPACE
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git add $GITHUB_WORKSPACE/custom_build.bin
git add $GITHUB_WORKSPACE/last_update_date.txt
git commit -m "Commit Custom Build"
git push origin main