This repository contains the SDK for Cobalt's Cubic Speech Recognition Engine.
This README has instructions to build the SDK. For installing and using the SDK, see the SDK Docs.
The grpc
folder at the top level of this repository contains code for Cubic's
GRPC API. The grpc/cubic.proto
file is the authoritative service definition of
the API and is used for auto generating SDK code in multiple languages.
The grpc
folder contains auto-generated code in several languages. In order
to generate the code again, you should run make
. Generated code is checked
in, and you must make sure it is up to date when you push commits to this
repository.
Code generation has the following dependencies:
A few system dependencies are required:
The top level Makefile can set up all other dependencies.
Documentation is authored in the docs-src
folder and generated static website
is stored in the docs
folder.
To generate the code and documentation, run make
. This is currently only
supported under linux.
If you are doing local development on the docs, you can use this command to serve it locally:
cd docs-src
../deps/bin/hugo server -D
This repository has several components, and they need more than just a "vX.Y.Z" tag on the git repo. In particular, this repository has two go modules, one of which depends on the other, and in order to make sure correct versions are used, we need to follow a few careful steps to release new versions on this repository.
Step 1: Make sure all generated code is up to date.
pushd grpc && make && popd
git diff --quiet || echo "You have uncommitted changes. Please get them merged in via a PR before updating versions."
Step 2: Update the version number.
In addition to the git tags, we also save the version string in a few places in our sources. These strings should all be updated and a new commit created. The git tags should then be placed on that commit once merged to master.
Decide which version you'd like to tag. For this README, let's say the next
version to tag is 1.0.1
.
Step 3: Add version tags to the sources.
NEW_VERSION="1.0.1"
git checkout master
git checkout -b version-update-v$NEW_VERSION
sed -i -e 's|grpc/go-cubic v[0-9.]*|grpc/go-cubic v'$NEW_VERSION'|g' grpc/go-cubic/cubicpb/gw/go.mod
sed -i -e 's|version='\''[0-9.]*'\''|version='\'$NEW_VERSION\''|g' grpc/py-cubic/setup.py
sed -i -e 's|CubicVersion = "[0-9.]*"|CubicVersion = "'$NEW_VERSION'"|g' grpc/swift-cubic/Cubic.swift
sed -i -e 's|.upToNextMajor(from: "[0-9.]*")|.upToNextMajor(from: "'$NEW_VERSION'")|g' docs-src/content/using-cubic-sdk/installation.md
sed -i -e 's|com.github.cobaltspeech:sdk-cubic:v[0-9.]*|com.github.cobaltspeech:sdk-cubic:v'$NEW_VERSION'|g' docs-src/content/using-cubic-sdk/installation.md
sed -i -e 's|<version>v[0-9.]*-java</version>|<version>v'$NEW_VERSION'-java</version>|g' docs-src/content/using-cubic-sdk/installation.md
sed -i -e 's|<Version>[0-9.]*</Version>|<Version>'$NEW_VERSION'</Version>|g' grpc/csharp-cubic/cubic.csproj
sed -i -e 's|CSHARP_RELEASE_VERSION="[0-9.]*"|CSHARP_RELEASE_VERSION="'$NEW_VERSION'"|g' grpc/Makefile
sed -i -e 's|<version>v[0-9.]*</version>|<version>v'$NEW_VERSION'</version>|' pom.xml
git commit -m "Update version to v$NEW_VERSION"
git push origin version-update-v$NEW_VERSION
Step 4: Create a pull request and get changes merged to master.
Step 5: Create version tags on the latest master branch:
git checkout master
git pull origin master
git tag -a v$NEW_VERSION -m ''
git tag -a v$NEW_VERSION-java -m ''
git tag -a grpc/go-cubic/v$NEW_VERSION -m ''
git tag -a grpc/go-cubic/cubicpb/gw/v$NEW_VERSION -m ''
git push origin --tags
link |
Stars: 4 |
Last commit: 1 week ago |
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics