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 47421b8 commit eb4e891Copy full SHA for eb4e891
tools/build.sh
@@ -1,14 +1,9 @@
1
#!/bin/bash
2
3
-# run cmake tests
4
-tools/check_cmakelists.sh
5
-if [ $? -ne 0 ]; then exit 1; fi
6
-
7
-# run sketch tests
8
-tools/build-tests.sh
9
10
11
-# zip the package if tagged build, otherwise finish here
12
if [ ! -z "$TRAVIS_TAG" ]; then
+ # zip the package if tagged build
13
tools/build-release.sh -a$ESP32_GITHUB_TOKEN
+else
+ # run cmake and sketch tests
+ tools/check_cmakelists.sh && tools/build-tests.sh
14
fi
0 commit comments