Fix native unit test (#763)

* Fix native unit test

* Include native unit test in CI build
This commit is contained in:
tx_haggis 2022-02-13 18:04:11 -06:00 committed by GitHub
parent 86110a23fc
commit c9213a5555
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -19,6 +19,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up GCC
uses: egor-tensin/setup-gcc@v1
with:
version: latest
platform: x32
- name: Set up Python
uses: actions/setup-python@v2
with:
@ -38,6 +44,7 @@ jobs:
run: |
platformio run -e megaatmega2560
platformio remote test --force-remote --environment megaatmega2560
platformio test -e native
- name: Slack Notification (Passed)
uses: rtCamp/action-slack-notify@v2

View File

@ -163,6 +163,6 @@ default_envs = megaatmega2560
platform = native
build_flags = -std=gnu++11
debug_build_flags = -std=gnu++11 -O0 -g3
test_ignore = test_misc, test_decoders, test_schedules
test_ignore = test_misc, test_decoders, test_schedules, test_fuel
debug_test = test_table3d_native
build_type = debug