Graphql module fails as slingfeature #1184
Open
Travis CI / Travis CI - Pull Request
required action
Jul 19, 2024 in 29m 45s
Build Errored
The build errored. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #1184 Graphql module fails as slingfeature .
Any changes that have been made to the develop-sling12 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 | Ruby |
Operating System | Linux (Xenial) |
JDK Version | openjdk11 |
Build Configuration
{
"language": "ruby",
"os": [
"linux"
],
"dist": "xenial",
"branches": {
"only": [
"develop-sling12",
"develop"
]
},
"cache": {
"directories": [
"$HOME/.m2"
]
},
"services": [
"docker"
],
"jdk": [
"openjdk11"
],
"env": [
"global={:DOCKER_IMAGE=>\"peregrinecms/peregrine-cms\"}={:DOCKER_USERNAME=>\"gastongonzalez\"} jobs=DOCKER_PASSWORD=[secure]"
],
"before_script": [
"branch=\"$(echo ${TRAVIS_BRANCH} | tr '/' '-' | tr '[:upper:]' '[:lower:]')\"",
"version=\"$(awk '$2 == \"APP_VERSION\" { print $3; exit }' docker/Dockerfile)\""
],
"script": [
"if [ ${TRAVIS_PULL_REQUEST} != \"false\" ]; then BUILD_BRANCH=$TRAVIS_PULL_REQUEST_BRANCH; else BUILD_BRANCH=$TRAVIS_BRANCH; fi",
"./travis-build.sh",
"cd docker && ./builddocker.sh && ./builddocker-remote-replication.sh",
"./pushdocker-travis.sh"
],
"after_script": [
"docker images"
],
"before_deploy": [
"echo \"$DOCKER_PASSWORD\" | docker login -u \"$DOCKER_USERNAME\" --password-stdin",
"docker tag \"$DOCKER_IMAGE\" \"${DOCKER_IMAGE}:latest\"",
"docker tag \"$DOCKER_IMAGE\" \"${DOCKER_IMAGE}:${branch}\""
],
"deploy": [
{
"provider": "script",
"script": "docker push ${DOCKER_IMAGE}:${branch}",
"on": {
"branch": [
"develop-sling12"
]
}
}
]
}
Loading