-
set docker image and helm chart version
NOTE:
APP_VERSION
must be in semver format, otherwise building the helm charts will fail (with no error message).export APP_VERSION=0.15.0-dev
-
install bazelisk (or bazel)
-
build and test all (just FYI, not necessary):
I hereby claim:
- I am khernyo on github.
- I am khernyo (https://keybase.io/khernyo) on keybase.
- I have a public key whose fingerprint is 26AA 0B58 8553 8D3C 2AF4 9352 FC06 AB4D DE35 E681
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
SCRIPT_DIR=$( cd "$( dirname "$0" )" && pwd ) | |
# the location of a clean racket repo which will be copied to avoid "git clone"-ing | |
REPO=$SCRIPT_DIR/../tools/racket | |
PLATFORM=linux-x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This hack works with com.android.tools.build:gradle:0.2, won't work in later version without modification | |
apply plugin: 'android' | |
targetCompatibility = 1.6 | |
sourceCompatibility = 1.6 | |
android { | |
target = 'android-14' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import akka.actor.{ ActorSystem, Actor, ActorRef, Props } | |
import akka.dispatch.Future | |
import akka.pattern.ask | |
import akka.util.duration._ | |
import akka.util.Timeout | |
import AkkaUtil.{ ResponseType, askT } | |
object AkkaUtil { | |
trait ResponseType[T, R] |