From c409666d4e76f231d2f0032e3e000dd006e311e0 Mon Sep 17 00:00:00 2001 From: Renz Bagaporo Date: Tue, 22 May 2018 18:26:19 +0800 Subject: [PATCH] ci: Add spiffs, fatfs host runs to CI Adds running the fatfs, spiffs sanity check to CI. --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 17feb07fbe..f76a061328 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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