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
11 lines
249 B
Bash
Executable File
11 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
source $(dirname "$0")/../tc-tests-utils.sh
|
|
|
|
mkdir -p ${TASKCLUSTER_ARTIFACTS} || true
|
|
|
|
tar -cf - \
|
|
-C ${DS_TFDIR}/bazel-bin/native_client/ libctc_decoder_with_kenlm.so | pixz -9 > "${TASKCLUSTER_ARTIFACTS}/decoder.tar.xz"
|