We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb992e commit 734b5ecCopy full SHA for 734b5ec
.travis.yml
@@ -115,6 +115,23 @@ matrix:
115
# Run local equeue tests
116
- make -C $EVENTS/equeue test
117
118
+ - env:
119
+ - NAME=ble-host-tests
120
+ - BLE_HOST_TESTS=features/FEATURE_BLE/tests
121
+ install:
122
+ # Install dependencies
123
+ - sudo apt-get install cmake
124
+ # Print versions we use
125
+ - gcc --version
126
+ - cmake --version
127
+ script:
128
+ # Compile the tests
129
+ - mkdir $BLE_HOST_TESTS/build
130
+ - cd $BLE_HOST_TESTS/build && cmake .. -G "Unix Makefiles"
131
+ - make -C BLE_HOST_TESTS/build
132
+ # Run ble host tests
133
+ - $BLE_HOST_TESTS/build/gatt-client-tests
134
+
135
- env:
136
- NAME=littlefs
137
- LITTLEFS=features/filesystem/littlefs
0 commit comments