Add audioreactive color palettes (Ratio, Hue, Spectrum) #7
Workflow file for this run
This file contains hidden or 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
| name: Build WLED-MM | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| - name: Checkout WLED-MM | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: MoonModules/WLED-MM | |
| path: WLED-MM | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install PlatformIO | |
| run: pip install platformio | |
| - name: Override AR_lib_deps to use this commit | |
| env: | |
| AR_REPO: ${{ github.event.pull_request.head.repo.full_name || github.repository }} | |
| AR_SHA: ${{ github.event.pull_request.head.sha || github.sha }} | |
| run: | | |
| cat > WLED-MM/platformio_override.ini << EOF | |
| [common_mm] | |
| AR_lib_deps = | |
| https://github.com/${AR_REPO}.git#${AR_SHA} | |
| https://github.com/softhack007/arduinoFFT.git#56c867c | |
| EOF | |
| - name: Build | |
| run: | | |
| cd WLED-MM | |
| pio run -e esp32_4MB_V4_S |