-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from DroneBridge/v2.0dev
V2.0dev to master fixing github action and adding esp32-c6 build
- Loading branch information
Showing
9 changed files
with
2,308 additions
and
430 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,6 @@ | ||
FROM espressif/idf:release-v5.2 | ||
RUN apt update | ||
RUN apt-get install -y curl | ||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh | ||
RUN bash nodesource_setup.sh | ||
RUN apt -y install nodejs |
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,22 @@ | ||
name: "Espressif IoT Development Framework (ESP-IDF), plus node.js and npm" | ||
branding: | ||
color: red | ||
icon: wifi | ||
inputs: | ||
target: | ||
description: "ESP32 variant to build for" | ||
default: "esp32" | ||
required: false | ||
command: | ||
description: "Command to run inside the docker container (default: builds the project)" | ||
default: "idf.py build" | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
env: | ||
IDF_TARGET: "${{inputs.target}}" | ||
args: | ||
- "/bin/bash" | ||
- "-c" | ||
- "${{inputs.command}}" |
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
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
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.