Bump actions/setup-go from 4 to 5 #12
Merged
Travis CI / Travis CI - Branch
succeeded
Dec 7, 2023 in 1m 49s
Build Passed
The build passed.
Details
This is a normal build for the dependabot/github_actions/actions/setup-go-5 branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has five jobs, running in parallel.
Stage 1: build
This stage passed.
Job | Go | Python | JDK | ENV | OS | State |
---|---|---|---|---|---|---|
614.1 | openjdk17 | CACHE=java | Linux | passed | ||
614.2 | openjdk17 | CACHE="algorithms/project-euler" | Linux | passed | ||
614.3 | Linux | passed | ||||
614.4 | 1.20 | Linux | passed | |||
614.5 | 3.11 | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Ruby |
Operating System | Linux (Jammy) |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "jammy",
"jobs": {
"include": [
{
"stage": "build",
"language": "java",
"jdk": "openjdk17",
"before_script": [
"cd java"
],
"script": [
"mvn -Djava.version=17 -s .mvn/settings.xml --show-version clean install"
],
"cache": {
"directories": [
"$HOME/.m2"
]
},
"env": [
{
"CACHE": "java"
}
]
},
{
"language": "java",
"jdk": "openjdk17",
"before_script": [
"cd algorithms/project-euler"
],
"script": [
"mvn -Djava.version=17 -s .mvn/settings.xml --show-version clean install"
],
"cache": {
"directories": [
"$HOME/.m2"
]
},
"env": [
{
"CACHE": "\"algorithms/project-euler\""
}
]
},
{
"language": "rust",
"before_script": [
"cd rust/guessing_game"
],
"cache": {
"cargo": true
}
},
{
"language": "go",
"go": "1.20",
"before_install": [
"cd go/learning"
],
"script": [
"go build -mod=mod -o . ./...",
"go test ./pkg/language",
"./language"
],
"cache": {
"directories": [
"$HOME/.cache/go-build",
"$HOME/gopath/pkg/mod"
]
}
},
{
"language": "python",
"python": "3.11",
"before_install": [
"cd python/apps/exchange-rate"
],
"install": [
"pip3 install tox"
],
"script": [
"make build",
"pip3 install .",
"exchange-rate"
],
"cache": {
"pip": true
}
}
]
}
}
Loading