Skip to content

Commit feed625

Browse files
committed
fix: missing end of file line ending
1 parent f5e8580 commit feed625

21 files changed

+22
-24
lines changed

.github/workflows/build-check.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ jobs:
6161
- name: Build project
6262
run: |
6363
sudo apt install -y ninja-build
64-
CMAKE_GENERATOR=Ninja make set_gen
65-
make all
64+
CMAKE_GENERATOR=Ninja make
6665
python3 ./build/tests/modularity.py --pub $Z_FEATURE_PUBLICATION --sub $Z_FEATURE_SUBSCRIPTION --queryable $Z_FEATURE_QUERYABLE --query $Z_FEATURE_QUERY
6766
timeout-minutes: 5
6867
env:
@@ -75,4 +74,4 @@ jobs:
7574
if: always()
7675
run: |
7776
docker stop zenoh_router
78-
docker rm zenoh_router
77+
docker rm zenoh_router

.github/workflows/build-shared.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@ jobs:
5050
env:
5151
BUILD_TYPE: Debug
5252
BUILD_SHARED_LIBS: ON
53-
ZENOH_DEBUG: 3
53+
ZENOH_DEBUG: 3
54+

.github/workflows/emscripten.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ jobs:
3636
mkdir build
3737
emcmake cmake -E env CFLAGS="-DZ_FEATURE_LINK_WS=1 -DZ_FEATURE_LINK_TCP=0 -DZ_FEATURE_LINK_UDP_MULTICAST=0 -DZ_FEATURE_LINK_UDP_UNICAST=0 -DZ_FEATURE_SCOUTING_UDP=0" cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_C_STANDARD=11 -DBUILD_EXAMPLES=OFF -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=OFF -DBUILD_MULTICAST=OFF -DBUILD_INTEGRATION=OFF -DBUILD_TOOLS=OFF -DZENOH_DEBUG=3 -H. -Bbuild
3838
make -C build
39-
40-

examples/arduino/z_sub.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ void setup() {
111111
Serial.println("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.");
112112
}
113113
void loop() {}
114-
#endif
114+
#endif

examples/espidf/z_get.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,4 @@ void app_main() {
175175
}
176176
#else
177177
void app_main() { printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERY but this example requires it.\n"); }
178-
#endif
178+
#endif

examples/espidf/z_pull.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,4 +173,4 @@ void app_main() {
173173
void app_main() {
174174
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
175175
}
176-
#endif
176+
#endif

examples/espidf/z_sub.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,4 @@ void app_main() {
171171
void app_main() {
172172
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
173173
}
174-
#endif
174+
#endif

examples/freertos_plus_tcp/include/FreeRTOSIPConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@
5151
#define ipconfigBUFFER_PADDING 14U
5252
#endif
5353

54-
#endif /* FREERTOS_IP_CONFIG_H */
54+
#endif /* FREERTOS_IP_CONFIG_H */

examples/freertos_plus_tcp/z_get.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ void app_main(void) {
9898
void app_main(void) {
9999
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERY but this example requires it.\n");
100100
}
101-
#endif
101+
#endif

examples/freertos_plus_tcp/z_queryable.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ void app_main(void) {
9494
void app_main(void) {
9595
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERYABLE but this example requires it.\n");
9696
}
97-
#endif
97+
#endif

examples/mbed/z_get.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ int main(void) {
100100
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERY but this example requires it\n");
101101
return -2;
102102
}
103-
#endif
103+
#endif

examples/mbed/z_pub.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ int main(void) {
9191
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_PUBLICATION but this example requires it.\n");
9292
return -2;
9393
}
94-
#endif
94+
#endif

examples/mbed/z_pull.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ int main(void) {
9797
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
9898
return -2;
9999
}
100-
#endif
100+
#endif

examples/mbed/z_queryable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ int main(void) {
100100
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERYABLE but this example requires it.\n");
101101
return -2;
102102
}
103-
#endif
103+
#endif

examples/mbed/z_sub.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ int main(void) {
9595
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
9696
return -2;
9797
}
98-
#endif
98+
#endif

examples/zephyr/z_get.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ int main(void) {
9494
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERY but this example requires it.\n");
9595
return -2;
9696
}
97-
#endif
97+
#endif

examples/zephyr/z_pub.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ int main(void) {
8888
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_PUBLICATION but this example requires it.\n");
8989
return -2;
9090
}
91-
#endif
91+
#endif

examples/zephyr/z_pull.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ int main(void) {
9191
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
9292
return -2;
9393
}
94-
#endif
94+
#endif

examples/zephyr/z_queryable.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ int main(void) {
9595
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_QUERYABLE but this example requires it.\n");
9696
return -2;
9797
}
98-
#endif
98+
#endif

examples/zephyr/z_sub.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ int main(void) {
8989
printf("ERROR: Zenoh pico was compiled without Z_FEATURE_SUBSCRIPTION but this example requires it.\n");
9090
return -2;
9191
}
92-
#endif
92+
#endif

tests/modularity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,4 +272,4 @@ def query_and_queryable(args):
272272
if query_and_queryable(args) == 1:
273273
exit_status = 1
274274
# Exit
275-
sys.exit(exit_status)
275+
sys.exit(exit_status)

0 commit comments

Comments
 (0)