Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 13 additions & 11 deletions .github/workflows/build-clang-doxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
build-esp32sx-esptool:
name: Build WipperSnapper ESP32-Sx
name: 🏗️ESP32-Sx
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.uf2

build-esp32sx:
name: Build WipperSnapper ESP32-Sx
name: 🏗️ESP32-Sx
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -175,7 +175,8 @@ jobs:
echo >>$GITHUB_ENV WS_VERSION=$(git describe --dirty --tags)
- uses: actions/checkout@v4
with:
repository: adafruit/ci-arduino
repository: tyeth/ci-arduino
ref: WS_ARDUINO_598-preprocessor-script-for-printing-the-library-versions-to-boot_outtxt
path: ci
- name: Install CI-Arduino
run: bash ci/actions_install.sh
Expand Down Expand Up @@ -204,8 +205,9 @@ jobs:
- name: Copy lv_conf.h file in Adafruit_LittlevGL_Glue_Library to the arduino library folder
run: |
cp /home/runner/Arduino/libraries/Adafruit_LittlevGL_Glue_Library/lv_conf.h /home/runner/Arduino/libraries
- name: Build for ESP32-SX
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000
- name: Build for ESP32-SX #2
run: |
python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --include_print_dependencies_header
- name: list
run: |
ls
Expand All @@ -223,7 +225,7 @@ jobs:
wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.bin

build-esp32:
name: Build WipperSnapper ESP32, ESP32-C3
name: 🏗️ESP32, ESP32-C3
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -337,7 +339,7 @@ jobs:
wippersnapper.${{ matrix.arduino-platform }}.littlefs.${{ env.WS_VERSION }}.zip

build-samd:
name: Build WipperSnapper SAMD
name: 🏗️SAMD
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -393,7 +395,7 @@ jobs:
wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.hex

build-rp2040:
name: Build WipperSnapper RP2040
name: 🏗️RP2040
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -442,7 +444,7 @@ jobs:

# NOTE: This does NOT release artifacts, it only builds
build-samd-non-fs:
name: Build WipperSnapper SAMD (NO-TINYUSB)
name: 🏗️SAMD (NO-TINYUSB)
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -482,7 +484,7 @@ jobs:
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000

build-esp8266:
name: Build WipperSnapper ESP8266
name: 🏗️ESP8266
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -538,7 +540,7 @@ jobs:
wippersnapper.${{ matrix.arduino-platform }}.littlefs.${{ env.WS_VERSION }}.zip

build-esp32sx-dev:
name: Build WipperSnapper ESP32-Sx DEV BUILDS
name: 🏗️ESP32-Sx DEV BUILDS
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
Loading