Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Determine the release name via the ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
est31 committed Nov 5, 2019
1 parent 26e0eac commit d4aeaa0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions ci.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
#!/usr/bin/env bash

dir=$(dirname "${BASH_SOURCE[0]}")
release="v0.6.0-alpha.12"

# Fail on error
set -e

# Verbose execution
set -v

dir=$(dirname "${BASH_SOURCE[0]}")
release="v$(cat $dir/sys/deepspeech/VERSION)"
echo "release is $release"

# Download the native client
client_dir="$dir/target/native_client"
rm -rf $client_dir || true
Expand Down
2 changes: 1 addition & 1 deletion sys/deepspeech
Submodule deepspeech updated 83 files
+3 −10 .taskcluster.yml
+27 −21 DeepSpeech.py
+1 −0 Dockerfile
+2 −2 README.rst
+13 −0 TRAINING.rst
+1 −1 VERSION
+5 −7 bin/import_cv2.py
+2 −0 bin/import_gram_vaani.py
+1 −1 bin/import_lingua_libre.py
+16 −16 bin/import_m-ailabs.py
+1 −1 bin/import_slr57.py
+446 −0 bin/import_swc.py
+165 −0 bin/import_tuda.py
+0 −0 bin/import_vctk.py
+36 −0 doc/DotNet-API.rst
+7 −2 doc/Makefile
+2 −0 doc/conf.py
+2,494 −0 doc/doxygen-dotnet.conf
+3 −1 doc/index.rst
+12 −9 evaluate.py
+16 −10 evaluate_tflite.py
+1 −1 examples/ffmpeg_vad_streaming/package.json
+3 −3 examples/mic_vad_streaming/requirements.txt
+1 −1 examples/nodejs_wav/package.json
+3 −3 examples/tests.sh
+1 −1 examples/vad_transcriber/requirements.txt
+2 −2 native_client/ctcdecode/Makefile
+12 −5 native_client/ctcdecode/ctc_beam_search_decoder.cpp
+3 −3 native_client/ctcdecode/path_trie.cpp
+2 −2 native_client/ctcdecode/path_trie.h
+3 −1 native_client/ctcdecode/scorer.cpp
+1 −1 native_client/javascript/README.rst
+0 −3 native_client/javascript/index.js
+1 −1 native_client/javascript/package.json.in
+1 −1 native_client/python/Makefile
+10 −4 native_client/python/__init__.py
+26 −0 native_client/swig_py38_untrack.patch
+1 −1 taskcluster/.build.yml
+3 −3 taskcluster/.shared.yml
+1 −1 taskcluster/android-arm64-cpu-opt.yml
+1 −1 taskcluster/android-armv7-cpu-opt.yml
+1 −1 taskcluster/android-java-opt.yml
+1 −1 taskcluster/android-x86_64-cpu-opt.yml
+1 −1 taskcluster/darwin-amd64-cpu-opt.yml
+1 −1 taskcluster/darwin-amd64-ctc-opt.yml
+1 −1 taskcluster/darwin-amd64-tflite-opt.yml
+1 −1 taskcluster/darwin-opt-base.tyml
+13 −0 taskcluster/examples-mic_vad_streaming-py38.yml.DISABLED_UNTIL_SCIPY_PY38
+10 −0 taskcluster/examples-vad_transcriber-py38.yml
+1 −1 taskcluster/linux-amd64-cpu-opt.yml
+1 −1 taskcluster/linux-amd64-ctc-opt.yml
+1 −1 taskcluster/linux-amd64-gpu-opt.yml
+1 −1 taskcluster/linux-amd64-tflite-opt.yml
+1 −1 taskcluster/linux-arm64-cpu-opt.yml
+1 −1 taskcluster/linux-opt-base.tyml
+1 −1 taskcluster/linux-rpi3-cpu-opt.yml
+1 −1 taskcluster/node-package-cpu.yml
+1 −1 taskcluster/node-package-gpu.yml
+3 −0 taskcluster/tc-electron-tests.sh
+32 −12 taskcluster/tc-tests-utils.sh
+3 −3 taskcluster/test-android-opt-base.tyml
+3 −3 taskcluster/test-armbian-opt-base.tyml
+4 −4 taskcluster/test-darwin-opt-base.tyml
+5 −5 taskcluster/test-linux-opt-base.tyml
+1 −1 taskcluster/test-lite_benchmark_model-linux-amd64-opt.yml
+13 −0 taskcluster/test-python_38-darwin-amd64-opt.yml
+13 −0 taskcluster/test-python_38-linux-amd64-opt.yml
+12 −0 taskcluster/test-python_38-linux-amd64-prod_pbmodel-opt.yml
+13 −0 taskcluster/test-python_38-win-amd64-opt.yml
+3 −3 taskcluster/test-raspbian-opt-base.tyml
+1 −1 taskcluster/test-training_upstream-linux-amd64-py35m-opt.yml
+4 −4 taskcluster/test-win-opt-base.tyml
+1 −1 taskcluster/win-amd64-cpu-opt.yml
+1 −1 taskcluster/win-amd64-gpu-opt.yml
+1 −1 taskcluster/win-amd64-tflite-opt.yml
+1 −1 taskcluster/win-build.sh
+1 −1 taskcluster/win-opt-base.tyml
+8 −8 taskcluster/worker.cyml
+8 −1 util/check_characters.py
+5 −13 util/feeding.py
+5 −0 util/flags.py
+2 −2 util/taskcluster.py
+20 −10 util/text.py

0 comments on commit d4aeaa0

Please sign in to comment.