Skip to content

Commit 694b2d7

Browse files
authored
Merge pull request #88 from david-cermak/eppp/v0.2.1
[eppp]: Release v0.2.1
2 parents b2dcabe + b9f3d99 commit 694b2d7

File tree

12 files changed

+22
-15
lines changed

12 files changed

+22
-15
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:

components/wifi_remote_over_eppp/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(eppp): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py wifi_remote_over_eppp
55
tag_format: wifi_rmt_eppp-v$version
6-
version: 0.2.0
6+
version: 0.2.1
77
version_files:
88
- idf_component.yml

components/wifi_remote_over_eppp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.1](https://github.com/espressif/esp-wifi-remote/commits/wifi_rmt_eppp-v0.2.1)
4+
5+
### Bug Fixes
6+
7+
- Move eppp slave to the wrmt-over-eppp component ([36a35a7](https://github.com/espressif/esp-wifi-remote/commit/36a35a7))
8+
- Fix EPPP server to process only wifi-station IP event ([59f6fc2](https://github.com/espressif/esp-wifi-remote/commit/59f6fc2))
9+
310
## [0.2.0](https://github.com/espressif/esp-wifi-remote/commits/wifi_rmt_eppp-v0.2.0)
411

512
### Features
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)