ci: Add spiffs, fatfs host runs to CI

Adds running the fatfs, spiffs sanity check to CI.
pull/2065/head
Renz Bagaporo 2018-05-22 18:26:19 +08:00 zatwierdzone przez bot
rodzic e542b7a920
commit c409666d4e
1 zmienionych plików z 20 dodań i 0 usunięć

Wyświetl plik

@ -285,6 +285,26 @@ test_wl_on_host:
- cd components/wear_levelling/test_wl_host
- make test
test_fatfs_on_host:
stage: test
image: $CI_DOCKER_REGISTRY/esp32-ci-env$BOT_DOCKER_IMAGE_TAG
tags:
- wl_host_test
dependencies: []
script:
- cd components/fatfs/test_fatfs_host/
- make test
test_spiffs_on_host:
stage: test
image: $CI_DOCKER_REGISTRY/esp32-ci-env$BOT_DOCKER_IMAGE_TAG
tags:
- wl_host_test
dependencies: []
script:
- cd components/spiffs/test_spiffs_host/
- make test
test_multi_heap_on_host:
stage: test
image: $CI_DOCKER_REGISTRY/esp32-ci-env$BOT_DOCKER_IMAGE_TAG