MCC-1365296 rewrite as java wrapper #34
Draft
Travis CI / Travis CI - Branch
succeeded
May 16, 2025 in 56s
Build Passed
The build passed, just like the previous build.
Details
This is a normal build for the MCC-1365296-rewrite-as-java-wrapper branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | Clojure |
| Operating System | Linux (Noble) |
| JDK Version | openjdk17 |
| Ruby Version | 2.6 |
Build Configuration
{
"language": "clojure",
"os": [
"linux"
],
"dist": "noble",
"addons": {
"apt": {
"packages": [
"gzip"
]
}
},
"jdk": [
"openjdk17"
],
"rvm": [
"2.6"
],
"stages": [
{
"name": "test",
"if": "branch = develop"
},
{
"name": "publish",
"if": "tag IS present"
}
],
"cache": {
"bundler": true
},
"jobs": {
"include": [
{
"stage": "build",
"name": "Build & Test",
"script": [
"lein test"
]
},
{
"stage": "test",
"install": [
"lein deps",
"lein pom"
],
"script": [
"lein test"
]
},
{
"stage": "publish",
"install": [
"lein deps",
"lein pom"
],
"script": [
"lein test"
],
"deploy": [
{
"provider": "script",
"script": "lein deploy",
"cleanup": false,
"on": {
"tags": true,
"all_branches": true
}
}
]
}
]
}
}
Loading