Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added basic example that test the last version in Pio registry #202

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,16 @@ jobs:
- name: Basic Arduino IDE example test
run: |
cd examples/advanced_sensirion
pio run -s
- name: PlatformIO registry test (M5CoreInk project)
pio run
- name: PlatformIO registry backward (M5CoreInk project)
run: |
git clone https://github.com/hpsaturn/co2_m5coreink.git
cd co2_m5coreink
pio run -s
pio run
- name: PlatformIO registry lastest (M5Atom project)
run: |
cd examples/m5atom
pio run
- name: All archictures tests
run: |
pio run
Expand Down
4 changes: 1 addition & 3 deletions examples/m5atom/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

[platformio]
src_dir = .
lib_dir = ../..
extra_configs = ../../unified-lib-deps.ini

[env:esp32dev]
platform = espressif32
Expand All @@ -23,6 +21,6 @@ build_flags =
-D CORE_DEBUG_LEVEL=0
-D M5ATOM
lib_deps =
hpsaturn/CanAirIO Air Quality Sensors Library @ 0.7.4
fastled/FastLED@^3.5.0
m5stack/M5Atom@^0.0.7
${commonlibs.lib_deps}
Loading