This file contains hidden or 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
stages: | |
- build | |
... | |
- deploy_staging | |
- deploy_staging_eu | |
- deploy_production | |
- deploy_production_eu |
This file contains hidden or 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
## POST /invitations | |
gateway_route_body(->(o) { o.country }) | |
params do | |
requires :candidate_id, type: String | |
requires :package, type: String | |
optional :tags, type: Array[String] | |
... | |
end | |
post '/' do | |
... |
This file contains hidden or 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
Services | Team | Infra dependencies | In Staging | In Production | |
---|---|---|---|---|---|
Redis | <> | N/A | done | done | |
Kafka | <> | N/A | done | done | |
Cadence | <> | N/A | done | done | |
... | ... | ... | ... | ... | |
Monolith | <> | MySQL, MongoDB, Kafka... | done | <JIRA ticket> | |
Candidate Portal | <> | DataDog, Sentry | done | <JIRA ticket> | |
Communicator | <> | Flagr, Kafka | done | <JIRA ticket> | |
Search | <> | AWS Elasticsearch | done | <JIRA ticket> |
This file contains hidden or 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
// If on JDK 9+, verify project cross-compiles on its 'sourceCompatible' JVM version (see https://github.com/melix/mrjar-gradle/blob/master/jdks.gradle) | |
if (project.hasProperty('crossCompile')) { | |
if (JavaVersion.current().java9Compatible) { | |
project.afterEvaluate { | |
tasks.withType(JavaCompile) { | |
def version = compat(sourceCompatibility) | |
project.logger.info("Configuring $name to use --release $version") | |
options.compilerArgs.addAll(['--release', version]) | |
} | |
} |
NewerOlder