update travis dist to 24.04 #232
Merged
Travis CI / Travis CI - Pull Request
succeeded
Oct 21, 2025 in 6m 44s
Build Passed
The build passed. This is a change from the previous build, which errored.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #232 update travis dist to 24.04.
Any changes that have been made to the 2.13.x 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 | Scala |
| Operating System | Linux (Noble) |
| JDK Version | openjdk21 |
Build Configuration
{
"language": "scala",
"os": [
"linux"
],
"dist": "noble",
"install": [
"sudo apt-get -qq update",
"sudo apt-get install -y rpm"
],
"jdk": [
"openjdk21"
],
"env": [
"global=PRIV_KEY_SECRET=[secure]=APPVEYOR_TOKEN=[secure]=TRAVIS_TOKEN=[secure]=AWS_ACCESS_KEY_ID=[secure]=AWS_SECRET_ACCESS_KEY=[secure]=GITHUB_OAUTH_TOKEN=[secure]"
],
"script": [
"source scripts/common",
"postCommitStatus \"pending\"",
"admin/build.sh"
],
"after_script": [
"if [[ \"$TRAVIS_TEST_RESULT\" == \"0\" ]]; then\n local state=\"success\"\nelse\n local state=\"failure\"\nfi\npostCommitStatus $state\n"
],
"cache": {
"directories": [
"$HOME/.ivy2",
"$HOME/.sbt/boot",
"$HOME/.sbt/launchers"
]
},
"before_cache": [
"find $HOME/.sbt -name \"*.lock\" | xargs rm",
"find $HOME/.ivy2 -name \"ivydata-*.properties\" | xargs rm"
]
}
Loading