code clean and filter the noise while LCD start up. #9
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 3' | |
| jobs: | |
| Linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Linux dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libsdl2-dev | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v1 | |
| - name: Install PlatformIO | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -U platformio | |
| platformio update | |
| - name: Build esp32_boards | |
| run: platformio run -e esp32_boards | |
| #Linux_i386: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Install Linux dependencies | |
| # run: | | |
| # sudo dpkg --add-architecture i386 | |
| # sudo apt-get update | |
| # sudo apt-get install libsdl2-dev:i386 gcc-multilib g++-multilib | |
| # | |
| # - uses: actions/checkout@v2 | |
| # - uses: actions/setup-python@v1 | |
| # | |
| # - name: Install PlatformIO | |
| # run: | | |
| # python -m pip install --upgrade pip | |
| # pip install -U platformio | |
| # platformio update | |
| # | |
| # - name: Build emulator (sdl2, 32bits) | |
| # run: platformio run -e emulator_32bits | |
| # macOS: | |
| # runs-on: macos-latest | |
| # steps: | |
| # - name: Install macOS dependencies | |
| # run: | | |
| # HOMEBREW_NO_AUTO_UPDATE=1 brew install sdl2 | |
| # - uses: actions/checkout@v2 | |
| # - uses: actions/setup-python@v5 | |
| # - name: Install PlatformIO | |
| # run: | | |
| # python -m pip install --upgrade pip | |
| # pip install -U platformio | |
| # platformio update | |
| # - name: Build esp32_boards | |
| # run: platformio run -e esp32_boards | |
| # Windows: | |
| # runs-on: Windows Server 2025 | |
| # steps: | |
| # - uses: actions/checkout@v2 | |
| # - uses: actions/setup-python@v1 | |
| # - name: Install PlatformIO | |
| # run: | | |
| # python -m pip install --upgrade pip | |
| # pip install -U platformio | |
| # platformio update | |
| # - name: Build esp32_boards | |
| # run: platformio run -e esp32_boards | |