Skip to content

Commit 5ed781a

Browse files
committed
Merge branch 'master' into ci/tests_refactor
2 parents 5e75c1e + 7282268 commit 5ed781a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/publishsizes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Sizes Results
22

33
on:
44
workflow_run:
5-
workflows: [Compilation Test]
5+
workflows: [Compilation Tests]
66
types:
77
- completed
88

.github/workflows/push.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Compilation Test
1+
name: Compilation Tests
22

33
on:
44
workflow_dispatch:
@@ -16,8 +16,6 @@ on:
1616
- '!libraries/**.py'
1717
- 'package/**'
1818
- 'tools/**.py'
19-
- 'idf_component_examples/**'
20-
- '!idf_component_examples/**.md'
2119
- 'platform.txt'
2220
- 'programmers.txt'
2321
- 'idf_component.yml'
@@ -89,7 +87,6 @@ jobs:
8987
idf:
9088
- 'idf_component.yml'
9189
- 'Kconfig.projbuild'
92-
- 'idf_component_examples/**'
9390
platformio:
9491
- 'package.json'
9592
- '.github/scripts/install-platformio-esp32.sh'
@@ -301,7 +298,9 @@ jobs:
301298
shell: bash
302299
run: |
303300
. ${IDF_PATH}/export.sh
304-
idf.py -C components/arduino-esp32/idf_component_examples/Hello_world -DEXTRA_COMPONENT_DIRS=$PWD/components build
301+
idf.py create-project test
302+
echo CONFIG_FREERTOS_HZ=1000 > test/sdkconfig.defaults
303+
idf.py -C test -DEXTRA_COMPONENT_DIRS=$PWD/components build
305304
306305
# Save artifacts to gh-pages
307306
save-master-artifacts:

0 commit comments

Comments
 (0)