Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Graphql module fails as slingfeature #1184

Open
wants to merge 1 commit into
base: develop-sling12
Choose a base branch
from

Migrate content package projects from wcmio-content-package-maven-plu…

f00132a
Select commit
Loading
Failed to load commit list.
Open

Graphql module fails as slingfeature #1184

Migrate content package projects from wcmio-content-package-maven-plu…
f00132a
Select commit
Loading
Failed to load commit list.
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"
        ]
      }
    }
  ]
}