Skip to content

Commit fb7c28b

Browse files
authored
Merge pull request #202 from kike-canaries/improvec_ci_tests
added basic example that test the last version in Pio registry
2 parents 39d7e88 + fbc7da2 commit fb7c28b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/platformio.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,16 @@ jobs:
3434
- name: Basic Arduino IDE example test
3535
run: |
3636
cd examples/advanced_sensirion
37-
pio run -s
38-
- name: PlatformIO registry test (M5CoreInk project)
37+
pio run
38+
- name: PlatformIO registry backward (M5CoreInk project)
3939
run: |
4040
git clone https://github.com/hpsaturn/co2_m5coreink.git
4141
cd co2_m5coreink
42-
pio run -s
42+
pio run
43+
- name: PlatformIO registry lastest (M5Atom project)
44+
run: |
45+
cd examples/m5atom
46+
pio run
4347
- name: All archictures tests
4448
run: |
4549
pio run

examples/m5atom/platformio.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
[platformio]
1212
src_dir = .
13-
lib_dir = ../..
14-
extra_configs = ../../unified-lib-deps.ini
1513

1614
[env:esp32dev]
1715
platform = espressif32
@@ -23,6 +21,6 @@ build_flags =
2321
-D CORE_DEBUG_LEVEL=0
2422
-D M5ATOM
2523
lib_deps =
24+
hpsaturn/CanAirIO Air Quality Sensors Library @ 0.7.4
2625
fastled/FastLED@^3.5.0
2726
m5stack/M5Atom@^0.0.7
28-
${commonlibs.lib_deps}

0 commit comments

Comments
 (0)