forked from hathach/tinyusb
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(CI): Added esp_io_solution repo clone and examples build to w…
…orkflow
- Loading branch information
Showing
1 changed file
with
17 additions
and
6 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 |
---|---|---|
|
@@ -18,12 +18,23 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- name: Build ESP IoT Solution USB Device examples | ||
- name: Configure ESP framework | ||
shell: bash | ||
run: | | ||
. ${IDF_PATH}/export.sh | ||
# pip install idf-component-manager==1.5.2 idf-build-apps --upgrade | ||
# python .github/ci/override_managed_component.py tinyusb . ${IDF_PATH}/examples/peripherals/usb/device/tusb_* | ||
# cd ${IDF_PATH} | ||
# idf-build-apps find --path examples/peripherals/usb/device/ --recursive --target all --manifest-file examples/peripherals/.build-test-rules.yml | ||
# idf-build-apps build --path examples/peripherals/usb/device/ --recursive --target all --manifest-file examples/peripherals/.build-test-rules.yml | ||
- name: Clone ESP IoT Solution repository | ||
shell: bash | ||
run: | | ||
git clone [email protected]:espressif/esp-iot-solution.git | ||
echo ${IDF_PATH} | ||
ls | ||
- name: Update component dependencies to local component | ||
shell: bash | ||
run: | | ||
pip install idf-component-manager==1.5.2 idf-build-apps --upgrade | ||
# python .github/ci/override_managed_component.py tinyusb . ${IDF_PATH}/examples/peripherals/usb/device/tusb_* | ||
- name: Build ESP IoT Solution USB Device examples | ||
shell: bash | ||
run: | | ||
idf-build-apps find --path esp-iot-solution/examples/usb/device/ --recursive --target all --manifest-file examples/peripherals/.build-test-rules.yml | ||
idf-build-apps build --path esp-iot-solution/examples/usb/device/ --recursive --target all --manifest-file examples/peripherals/.build-test-rules.yml |