-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactoring wrappers and readme info
- Loading branch information
Showing
11 changed files
with
624 additions
and
246 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: CI Build | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
runs-on: [ubuntu-latest] | ||
runs-on: ${{ matrix.runs-on }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: korandoru/setup-zig@v1 | ||
with: | ||
zig-version: master | ||
|
||
- name: prepare-linux | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y cmake | ||
git clone --recursive https://github.com/espressif/esp-idf -b v5.3-dev --depth 1 | ||
cd esp-idf && chmod +x ./install.sh && ./install.sh | ||
chmod +x ./export.sh && source ./export.sh | ||
cd .. | ||
- name: Build for esp32-c3 | ||
run: | | ||
idf.py set-target esp32c3 | ||
idf.py build | ||
idf.py size | ||
idf.py fullclean | ||
- name: Build for esp32-h2 | ||
run: | | ||
idf.py set-target esp32h2 | ||
idf.py build | ||
idf.py size | ||
idf.py fullclean | ||
- name: Build for esp32-p4 | ||
run: | | ||
idf.py --preview set-target esp32p4 | ||
idf.py build | ||
idf.py size | ||
idf.py fullclean |
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
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
Oops, something went wrong.