Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
cf49a99e22
|
|||
9d6dad6d63
|
|||
829d697c55
|
|||
489a7286ae
|
|||
bbb8ec6500
|
|||
83b132074a
|
|||
2f78cea324
|
|||
10bb6ee768
|
|||
d83b1e1918
|
|||
b62d1463e1
|
|||
fc73c13740
|
|||
fd8e45fbb8
|
|||
46661162b0
|
|||
d798433de6
|
17
.github/workflows/esp32_build.yml
vendored
17
.github/workflows/esp32_build.yml
vendored
@@ -1,21 +1,22 @@
|
|||||||
name: Thomas the tank engine - Build the ESP-IDF Project
|
name: Thomas the tank engine - Build the ESP-IDF Project
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
merge_group:
|
merge_group:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 5 * * 3"
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
idf_ver: [release-v5.0, release-v5.1, release-v5.2, release-v5.3]
|
idf_ver: [release-v5.3, release-v5.4, latest]
|
||||||
idf_target: [esp32, esp32s3, esp32c3, esp32h2]
|
idf_target: [esp32, esp32s3, esp32c3, esp32c5, esp32h2]
|
||||||
include:
|
|
||||||
- idf_ver: release-v5.3
|
|
||||||
idf_target: esp32c5
|
|
||||||
exclude:
|
|
||||||
- idf_ver: release-v5.0
|
|
||||||
idf_target: esp32h2
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,6 +5,7 @@ sdkconfig.old
|
|||||||
|
|
||||||
# They ignored Idea (Webstorm) completely
|
# They ignored Idea (Webstorm) completely
|
||||||
.idea/
|
.idea/
|
||||||
|
.cache/
|
||||||
|
|
||||||
# However, they kept the following 4 files version controlled
|
# However, they kept the following 4 files version controlled
|
||||||
.vscode/*
|
.vscode/*
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
idf_component_register(SRCS "main.c" "osr_ble.c"
|
idf_component_register(SRCS "main.c" "osr_ble.c"
|
||||||
INCLUDE_DIRS "."
|
INCLUDE_DIRS "."
|
||||||
PRIV_REQUIRES
|
PRIV_REQUIRES
|
||||||
nvs_flash)
|
nvs_flash
|
||||||
|
spi_flash
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user