Skip to content

add Arduino LED and Wi-Fi SDKs #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
46 changes: 46 additions & 0 deletions .github/workflows/build-arduino-esp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Arduino ESP Examples

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
# Build on Mondays at 9am PST every week
- cron: '0 17 * * 1'

jobs:
build-arduino-esp:
runs-on: ubuntu-24.04
container: espressif/idf:v5.4
strategy:
fail-fast: false
matrix:
example: [arduino-esp32-led-blink-sdk, arduino-esp32-wifi-scan-sdk]
swift: [swift-DEVELOPMENT-SNAPSHOT-2025-03-17-a]

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Install apt dependencies
run: |
apt-get -qq update
apt-get -qq -y install pkg-config libstdc++6

- name: Install ${{ matrix.swift }}
run: |
wget -q https://download.swift.org/development/ubuntu2404/${{ matrix.swift }}/${{ matrix.swift }}-ubuntu24.04.tar.gz
tar xzf ${{ matrix.swift }}-ubuntu24.04.tar.gz
export PATH="`pwd`/${{ matrix.swift }}-ubuntu24.04/usr/bin/:$PATH"
echo "PATH=$PATH" >> $GITHUB_ENV
swiftc --version

- name: Build ${{ matrix.example }}
run: |
cd $IDF_PATH
. ./export.sh
cd -
cd ${{ matrix.example }}
idf.py set-target esp32c6
idf.py build
38 changes: 0 additions & 38 deletions .github/workflows/build-esp.yml

This file was deleted.

58 changes: 0 additions & 58 deletions .github/workflows/build-nuttx.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/build-rpi-baremetal.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/build-rpi-pico-sdk.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/build-stm.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/build-zephyr.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .swiftformatignore

This file was deleted.

19 changes: 0 additions & 19 deletions CODEOWNERS

This file was deleted.

6 changes: 0 additions & 6 deletions Documentation/README.md

This file was deleted.

Loading