mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
This will help landing AOT support, avoiding turning tc-build.sh and tc-package.sh into a spaghetti mess. Fixes #898
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/../tc-tests-utils.sh
|
|
|
|
source ${DS_ROOT_TASK}/DeepSpeech/tf/tc-vars.sh
|
|
|
|
BAZEL_ENV_FLAGS="TF_NEED_CUDA=0"
|
|
BAZEL_BUILD_FLAGS="${BAZEL_OPT_FLAGS}"
|
|
BAZEL_TARGETS="${BAZEL_CTC_TARGETS}"
|
|
|
|
do_bazel_build
|