Browse Source

Added thread-safe build+size reporting to CI

Christopher Haster 5 năm trước cách đây
mục cha
commit
75131de614
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      .travis.yml

+ 3 - 3
.travis.yml

@@ -208,12 +208,12 @@ jobs:
     script:
       - make test TFLAGS+="-k --valgrind"
 
-  # test compilation in read-only mode
+  # test compilation in thread-safe mode
   - stage: test
     env:
-      - NAME=littlefs-readonly
+      - NAME=littlefs-threadsafe
       - CC="arm-linux-gnueabi-gcc --static -mthumb"
-      - CFLAGS="-Werror -DLFS_READONLY"
+      - CFLAGS="-Werror -DLFS_THREADSAFE"
     if: branch !~ -prefix$
     install:
       - *install-common