Add multiple boards of the Waveshare ESP32-S3-Touch-LCD-1.46 type #3305
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
name: Boards Test | |
# The workflow will run on schedule and labeled pull requests | |
on: | |
pull_request: | |
paths: | |
- 'boards.txt' | |
- 'libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino' | |
- '.github/workflows/boards.yml' | |
env: | |
# It's convenient to set variables for values used multiple times in the workflow | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
jobs: | |
find-boards: | |
runs-on: ubuntu-latest | |
outputs: | |
fqbns: ${{ env.FQBNS }} | |
steps: | |
# This step makes the contents of the repository available to the workflow | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup jq | |
uses: dcarbone/install-jq-action@v1.0.1 | |
- name: Get board name | |
run: | |
bash .github/scripts/find_new_boards.sh ${{ github.repository }} ${{github.base_ref}} | |
test-boards: | |
needs: find-boards | |
runs-on: ubuntu-latest | |
if: needs.find-boards.outputs.fqbns != '' | |
env: | |
REPOSITORY: | | |
- source-path: '.' | |
name: "espressif:esp32" | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.find-boards.outputs.fqbns) }} | |
steps: | |
# This step makes the contents of the repository available to the workflow | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check if build.board is uppercase | |
run: | | |
board_name=$(echo ${{ matrix.fqbn }} | awk -F':' '{print $NF}') | |
if grep -q "^$board_name.build.board=[A-Z0-9_]*$" boards.txt; then | |
echo "$board_name.build.board is valid."; | |
else | |
echo "Error: $board_name.build.board is not uppercase!"; | |
exit 1; | |
fi | |
- name: Get libs cache | |
uses: actions/cache@v4 | |
with: | |
key: libs-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('package/package_esp32_index.template.json', 'tools/get.py') }} | |
path: | | |
./tools/dist | |
./tools/esp32-arduino-libs | |
./tools/esptool | |
./tools/mk* | |
./tools/openocd-esp32 | |
./tools/riscv32-* | |
./tools/xtensa-* | |
- name: Compile sketch | |
uses: P-R-O-C-H-Y/compile-sketches@main | |
with: | |
platforms: | | |
${{ env.REPOSITORY }} | |
fqbn: ${{ matrix.fqbn }} | |
use-json-file: false | |
enable-deltas-report: false | |
enable-warnings-report: false | |
cli-compile-flags: | | |
- --warnings="all" | |
exit-on-fail: true | |
sketch-paths: | |
"- ./libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino" | |
verbose: true |