]> granicus.if.org Git - esp-idf/commitdiff
ci: Add spiffs, fatfs host runs to CI
authorRenz Bagaporo <renz@espressif.com>
Tue, 22 May 2018 10:26:19 +0000 (18:26 +0800)
committerbot <bot@espressif.com>
Wed, 6 Jun 2018 17:35:30 +0000 (17:35 +0000)
Adds running the fatfs, spiffs sanity check to CI.

.gitlab-ci.yml

index 17feb07fbe3abc17645ea7aca109ea88cd53fe2a..f76a0613283eb341f18bdd2eb6d6068e90754be1 100644 (file)
@@ -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