Skip to content

Commit 15c5971

Browse files
committed
Update ci
1 parent 83616c8 commit 15c5971

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.github/workflows/compile_library.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,17 +291,14 @@ jobs:
291291
echo "#include <Ethernet.h>" >> src/main.cpp
292292
echo "#include <ESP_SSLClient.h>" >> src/main.cpp
293293
echo "#define ENABLE_IMAP" >> src/main.cpp
294-
echo "#define ENABLE_SMTP" >> src/main.cpp
295294
echo "#define ENABLE_DEBUG" >> src/main.cpp
296295
echo "#include <ReadyMail.h>" >> src/main.cpp
297296
echo "EthernetClient basic_client;" >> src/main.cpp
298297
echo "ESP_SSLClient ssl_client;" >> src/main.cpp
299-
echo "SMTPClient smtp(ssl_client);" >> src/main.cpp
300298
echo "IMAPClient imap(ssl_client);" >> src/main.cpp
301299
echo "void setup() {" >> src/main.cpp
302300
echo "ssl_client.setClient(&basic_client);" >> src/main.cpp
303301
echo "ssl_client.setInsecure();" >> src/main.cpp
304-
echo "smtp.connect(\"smtp.gmail.com\", 465, \"127.0.0.1\", NULL);" >> src/main.cpp
305302
echo "imap.connect(\"imap.gmail.com\", 993, NULL);" >> src/main.cpp
306303
echo "}" >> src/main.cpp
307304
echo "void loop() {}" >> src/main.cpp

0 commit comments

Comments
 (0)