Need your feedback for research on evaluating automated conversion from Travis CI to GitHub Actions workflows #408
Travis CI / Travis CI - Pull Request
succeeded
Dec 8, 2025 in 9m 14s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #408 Need your feedback for research on evaluating automated conversion from Travis CI to GitHub Actions workflows.
Any changes that have been made to the master branch before the build ran are also included.
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 | Java |
| Operating System | Linux (Focal) |
| JDK Version | openjdk21 |
Build Configuration
{
"language": "java",
"os": [
"linux"
],
"dist": "focal",
"jdk": [
"openjdk21"
],
"before_install": [
"echo \"MAVEN_OPTS='-Xmx2g'\" > ~/.mavenrc"
],
"script": [
"bash -c 'if [ \"${TRAVIS_TAG}\" ]; then mvn versions:set -DnewVersion=${TRAVIS_TAG} versions:commit; fi'",
"mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V",
"mvn test -B",
"mvn clean install -DskipTests=true -Pdocker"
],
"before_deploy": [
"yes | gem update --system --force",
"gem install bundler",
"gem install faraday-net_http -v '3.3.0'",
"gem install uri",
"gem install logger"
],
"deploy": [
{
"provider": "releases",
"prerelease": true,
"file": [
"vlo-distribution/target/vlo-${TRAVIS_TAG}-docker.tar.gz"
],
"skip_cleanup": true,
"on": {
"tags": true
},
"token": "${VLO_DEPLOY_TOKEN}"
}
],
"notifications": {
"email": [
{
"on_success": "change",
"on_failure": "always"
}
],
"slack": [
{
"rooms": [
{
"secure": "${SLACK_INTEGRATION_KEY}"
}
],
"on_success": "change",
"on_failure": "always"
}
]
}
}
Loading