Add release build to the kokoro continuous integration.

PiperOrigin-RevId: 323086853
Change-Id: I95d8533605998afce3bcb0be7429e274c3c7a57b
This commit is contained in:
Advait Jain 2020-07-24 15:43:27 -07:00 committed by TensorFlower Gardener
parent 8b624486c4
commit 6a68d88188
5 changed files with 20 additions and 4 deletions

View File

@ -16,6 +16,7 @@ limitations under the License.
#include "tensorflow/lite/micro/micro_error_reporter.h"
int main(int argc, char** argv) {
#ifndef TF_LITE_STRIP_ERROR_STRINGS
tflite::MicroErrorReporter micro_error_reporter;
tflite::ErrorReporter* error_reporter = &micro_error_reporter;
TF_LITE_REPORT_ERROR(error_reporter, "Number: %d", 42);
@ -23,4 +24,5 @@ int main(int argc, char** argv) {
TF_LITE_REPORT_ERROR(error_reporter,
"Another % badly-formed %% format string");
TF_LITE_REPORT_ERROR(error_reporter, "~~~%s~~~", "ALL TESTS PASSED");
#endif // !defined(TF_LITE_STRIP_ERROR_STRINGS)
}

View File

@ -31,6 +31,7 @@ limitations under the License.
namespace tflite {
namespace {
#ifndef TF_LITE_STRIP_ERROR_STRINGS
const char* OpNameFromRegistration(const TfLiteRegistration* registration) {
if (registration->builtin_code == BuiltinOperator_CUSTOM) {
return registration->custom_name;
@ -38,6 +39,7 @@ const char* OpNameFromRegistration(const TfLiteRegistration* registration) {
return EnumNameBuiltinOperator(BuiltinOperator(registration->builtin_code));
}
}
#endif // !defined(TF_LITE_STRIP_ERROR_STRINGS)
} // namespace

View File

@ -34,6 +34,9 @@ make -f tensorflow/lite/micro/tools/make/Makefile \
echo "Starting to run micro tests at `date`"
echo "Running x86 tests at `date`"
tensorflow/lite/micro/tools/ci_build/test_x86.sh
echo "Running bluepill tests at `date`"
tensorflow/lite/micro/tools/ci_build/test_bluepill.sh
@ -43,9 +46,6 @@ tensorflow/lite/micro/tools/ci_build/test_mbed.sh PRESUBMIT
echo "Running Sparkfun tests at `date`"
tensorflow/lite/micro/tools/ci_build/test_sparkfun.sh
echo "Running x86 tests at `date`"
tensorflow/lite/micro/tools/ci_build/test_x86.sh
echo "Running stm32f4 tests at `date`"
tensorflow/lite/micro/tools/ci_build/test_stm32f4.sh

View File

@ -32,7 +32,12 @@ readable_run make -f tensorflow/lite/micro/tools/make/Makefile clean
# TODO(b/143715361): downloading first to allow for parallel builds.
readable_run make -f tensorflow/lite/micro/tools/make/Makefile TAGS=${TAGS} TARGET=${TARGET} third_party_downloads
# Build test binaries first
# First make sure that the release build succeeds.
readable_run make -j8 -f tensorflow/lite/micro/tools/make/Makefile BUILD_TYPE=release TAGS=${TAGS} TARGET=${TARGET} build
# Next, build w/o release so that we can run the tests and get additional
# debugging info on failures.
readable_run make -f tensorflow/lite/micro/tools/make/Makefile clean
readable_run make -j8 -f tensorflow/lite/micro/tools/make/Makefile TAGS=${TAGS} TARGET=${TARGET} build
# TODO(b/149597202): Disabled until we can get Docker running inside Docker.

View File

@ -28,4 +28,11 @@ readable_run make -f tensorflow/lite/micro/tools/make/Makefile clean
# TODO(b/143715361): downloading first to allow for parallel builds.
readable_run make -f tensorflow/lite/micro/tools/make/Makefile third_party_downloads
# First make sure that the release build succeeds.
readable_run make -j8 -f tensorflow/lite/micro/tools/make/Makefile BUILD_TYPE=release build
# Next, build w/o release so that we can run the tests and get additional
# debugging info on failures.
readable_run make -f tensorflow/lite/micro/tools/make/Makefile clean
readable_run make -s -j8 -f tensorflow/lite/micro/tools/make/Makefile test