Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update r0.8 #3186

Merged
merged 46 commits into from
Jul 27, 2020
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
058f53a
Update TRAINING.rst
karansag Jul 10, 2020
36a2f3b
Update TRAINING.rst
karansag Jul 16, 2020
e1626c6
Merge pull request #3149 from karansag/patch-1
lissyx Jul 17, 2020
0e8a28d
Bump caches and fix linker issues in new workers
reuben Jul 19, 2020
972f303
Merge branch 'new-workers' (Fixes #3168)
reuben Jul 19, 2020
3ce07af
Add TensorFlow iOS tasks
reuben Jun 30, 2020
c85f95f
Add DeepSpeech iOS tasks
reuben Jun 9, 2020
4ca0f94
client.cc iOS build
reuben Jun 9, 2020
a1aa873
Embed bitcode when linking
reuben Jun 14, 2020
a274c26
Add Swift wrapper framework
reuben Jun 14, 2020
f7c5066
Checkout fixed formulas commit in tf_tc-brew.sh
reuben Jul 14, 2020
e8d642b
Bump TensorFlow to remove usage of -z linker keyword on iOS
reuben Jul 14, 2020
6c38d56
Use submodule TF tc-vars.sh
reuben Jul 15, 2020
2f568e7
Don't use BAZEL_OPT_FLAGS in iOS builds
reuben Jul 15, 2020
aa8e9b0
Use correct build flags for ARM64 vs x86_64
reuben Jul 15, 2020
f0f4b0d
Remove even more bazel flags
reuben Jul 16, 2020
be43b3f
Bump caches for artifacts rebuilt on new worker
reuben Jul 16, 2020
de7a249
Fix linker issues during tests with new workers
reuben Jul 19, 2020
5e5db17
Address review comments
reuben Jul 20, 2020
d9dac13
Clean up tf_tc-build.sh
reuben Jul 20, 2020
2672878
Add docs to Swift bindings and missing methods
reuben Jul 20, 2020
ffcec7f
Merge pull request #3150 from mozilla/ios-build
reuben Jul 20, 2020
a982a61
Resolves #3146 - Let build_sdb.py also output CSV files and rename it…
tilmankamp Jul 9, 2020
b18a3a4
Merge pull request #3147 from tilmankamp/data_set_tool
tilmankamp Jul 21, 2020
48fb43c
Add UWP Nuget packing support
carlfm01 Jul 21, 2020
9bdce0a
Move deepspeech_ios_test projects to same level as deepspeech_ios
reuben Jul 21, 2020
a24d7ab
Merge pull request #3100 from carlfm01/uwp
lissyx Jul 21, 2020
ce0ef4f
Build and publish deepspeech_ios.framework
reuben Jul 21, 2020
2fd1474
Fix deepspeech_ios_project reference after folder move
reuben Jul 21, 2020
47685f0
Disable code signing in CI builds
reuben Jul 21, 2020
509d06d
Fix typo in ios-package.sh
reuben Jul 22, 2020
844b375
Address review comments
reuben Jul 22, 2020
38f6afd
Merge pull request #3173 from mozilla/ios-framework-publish
reuben Jul 22, 2020
eb33fc1
Document Alphabet methods in Python binding as well
reuben Jul 23, 2020
2cdc228
Use Alphabet.CanEncode in text_to_char_array
reuben Jul 23, 2020
816c2d8
Merge pull request #3176 from mozilla/alphabet-binding-docs
reuben Jul 23, 2020
9a5d19d
Resolves #1565 - Limiting and reversing data-sets
tilmankamp Jul 23, 2020
ecbdf46
Fixes #3178 - Librosa requires 1-dimensional array for mono samples
tilmankamp Jul 23, 2020
9e02366
Merge pull request #3177 from tilmankamp/reverse
tilmankamp Jul 24, 2020
15a6241
Merge pull request #3179 from tilmankamp/fix-for-librosa
tilmankamp Jul 24, 2020
8629573
Fix #3182: document rebuild of generate_scorer_package
Jul 27, 2020
9e3c420
Fix #3184: add missing label for data augmentation doc
Jul 27, 2020
aa597b3
Merge pull request #3185 from lissyx/doc-generate-scorer
lissyx Jul 27, 2020
39ef96b
Merge remote-tracking branch 'upstream/master' into update-r0.8
Jul 27, 2020
4db7f23
Bump VERSION to 0.8.0-alpha.8
Jul 27, 2020
3bdb3fc
Fix #3187: update msys2 installer
Jul 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable code signing in CI builds
  • Loading branch information
reuben committed Jul 21, 2020
commit 47685f059f8d81fc0e44ecfd8409b5683b109813
4 changes: 2 additions & 2 deletions taskcluster/tc-build-utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,10 @@ do_deepspeech_ios_framework_build()
cd ${DS_DSDIR}/native_client/swift
case $arch in
"--x86_64")
xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch x86_64 -sdk "iphonesimulator" -derivedDataPath DerivedData
xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch x86_64 -sdk "iphonesimulator" -derivedDataPath DerivedData CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
;;
"--arm64")
xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch arm64 -sdk "iphoneos" -derivedDataPath DerivedData
xcodebuild -workspace deepspeech_ios.xcworkspace -scheme deepspeech_ios_test -configuration Release -arch arm64 -sdk "iphoneos" -derivedDataPath DerivedData CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
;;
esac
}