Skip to content

Commit

Permalink
feature(CI): Changed the name of docker, as we need to use idf
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-jam committed Nov 5, 2024
1 parent a8cc409 commit f512f5c
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/build_iot_examples.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build ESP IoT Solution examples
name: Build ESP IoT Solution USB Device examples

on:
schedule:
Expand All @@ -10,21 +10,20 @@ jobs:
build:
strategy:
matrix:
#idf_ver: ["release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4", "latest"]
idf_ver: ["latest"]
runs-on: ubuntu-20.04
container: espressif/iot-solution:${{ matrix.idf_ver }}
container: espressif/idf:${{ matrix.idf_ver }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build ESP IOT Solution examples
- name: Build ESP IoT Solution USB Device examples
shell: bash
run: |
echo ${IDF_PATH}
# 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
. ${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

0 comments on commit f512f5c

Please sign in to comment.