Skip to content

Commit 36a35a7

Browse files
committed
fix(eppp): Move eppp slave to the wrmt-over-eppp component
1 parent b2dcabe commit 36a35a7

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
matrix:
5151
idf_ver: ["latest"]
5252
example:
53-
- { app: host, path: "examples/mqtt", bin: "build_esp32p4_p4" }
54-
- { app: host_1, path: "examples/mqtt", bin: "build_esp32p4_p4_1" }
55-
- { app: 2sta, path: "examples/two_stations", bin: "build_esp32s3_s3" }
56-
- { app: slave, path: "examples/server", bin: "build_esp32c6_c6" }
57-
- { app: slave_1, path: "examples/server", bin: "build_esp32c6_c6_1" }
58-
- { app: esp_hosted, path: "examples/mqtt", bin: "build_esp32p4_hosted" }
59-
- { app: esp_hosted_slave, path: "examples/hosted_slave", bin: "build_esp32c6_hosted" }
53+
- { app: host, path: "esp_wifi_remote/examples/mqtt", bin: "build_esp32p4_p4" }
54+
- { app: host_1, path: "esp_wifi_remote/examples/mqtt", bin: "build_esp32p4_p4_1" }
55+
- { app: 2sta, path: "esp_wifi_remote/examples/two_stations", bin: "build_esp32s3_s3" }
56+
- { app: slave, path: "wifi_remote_over_eppp/examples/server", bin: "build_esp32c6_c6" }
57+
- { app: slave_1, path: "wifi_remote_over_eppp/examples/server", bin: "build_esp32c6_c6_1" }
58+
- { app: esp_hosted, path: "esp_wifi_remote/examples/mqtt", bin: "build_esp32p4_hosted" }
59+
- { app: esp_hosted_slave, path: "esp_wifi_remote/examples/hosted_slave", bin: "build_esp32c6_hosted" }
6060

6161
runs-on: ubuntu-latest
6262
container: espressif/idf:${{ matrix.idf_ver }}
@@ -84,18 +84,18 @@ jobs:
8484
if [ "${{matrix.example.app}}" == "esp_hosted_slave" ]; then
8585
idf.py create-project-from-example "espressif/esp_hosted:slave"
8686
rm slave/sdkconfig.ci.*
87-
mv slave/ ./components/esp_wifi_remote/${{matrix.example.path}}/
87+
mv slave/ ./components/${{matrix.example.path}}/
8888
export EXPECTED_WARNING="${EXPECTED_WARNING}warning: the int symbol ESP_HOSTED"
89-
cp ./components/esp_wifi_remote/examples/sdkconfig.ci.hosted_slave ./components/esp_wifi_remote/${{matrix.example.path}}/sdkconfig.ci.hosted
89+
cp ./components/esp_wifi_remote/examples/sdkconfig.ci.hosted_slave ./components/${{matrix.example.path}}/sdkconfig.ci.hosted
9090
fi
91-
python $GITHUB_WORKSPACE/protocols/ci/build_apps.py ./components/esp_wifi_remote/${{matrix.example.path}} -vv --preserve-all
92-
cd ./components/esp_wifi_remote/${{matrix.example.path}}
91+
python $GITHUB_WORKSPACE/protocols/ci/build_apps.py ./components/${{matrix.example.path}} -vv --preserve-all
92+
cd ./components/${{matrix.example.path}}
9393
${GITHUB_WORKSPACE}/protocols/ci/clean_build_artifacts.sh `pwd`/${{matrix.example.bin}}
9494
zip -qur artifacts.zip ${{matrix.example.bin}}
9595
- uses: actions/upload-artifact@v4
9696
with:
9797
name: eppp_${{ matrix.idf_ver }}_${{matrix.example.bin}}
98-
path: components/esp_wifi_remote/${{matrix.example.path}}/artifacts.zip
98+
path: components/${{matrix.example.path}}/artifacts.zip
9999
if-no-files-found: error
100100

101101
run_example:
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies:
22
esp_wifi_remote:
33
version: "*"
4-
override_path: ../../..
4+
override_path: ../../../../esp_wifi_remote
55
wifi_remote_over_eppp:
66
version: "*"
77
override_path: ../../../../wifi_remote_over_eppp

0 commit comments

Comments
 (0)