Skip to content

Commit 23b6e27

Browse files
committed
Add LibreTiny to CI
1 parent 2ca19ec commit 23b6e27

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,11 @@ jobs:
7878
- env: ci-arduino-3-latest
7979
board: esp32-c6-devkitc-1
8080

81+
- env: ci-arduino-libretiny
82+
board: generic-bk7231n-qfn32-tuya
83+
- env: ci-arduino-libretiny
84+
board: generic-rtl8710bn-2mb-788k
85+
8186
steps:
8287
- name: Checkout
8388
uses: actions/checkout@v4

platformio.ini

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,12 @@ board = ${sysenv.PIO_BOARD}
4343
[env:ci-arduino-3-latest]
4444
platform = https://github.com/pioarduino/platform-espressif32/releases/download/54.03.20-rc2/platform-espressif32.zip
4545
board = ${sysenv.PIO_BOARD}
46+
47+
[env:ci-arduino-libretiny]
48+
platform = libretiny
49+
board = ${sysenv.PIO_BOARD}
50+
build_flags =
51+
${env.build_flags}
52+
-Wno-unused-parameter
53+
-Wno-unused-variable
54+
-Wno-missing-field-initializers

src/AsyncTCP.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ extern "C" {
3434
#include <FreeRTOS.h>
3535
#include <semphr.h>
3636
}
37-
#define CONFIG_ASYNC_TCP_RUNNING_CORE -1 // any available core
3837
#endif
3938

4039
// If core is not defined, then we are running in Arduino or PIO

0 commit comments

Comments
 (0)