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

Document GitOps RN 1.7.4 and 1.6.7 #59018

Merged
merged 1 commit into from Apr 19, 2023

[WIP] Document GitOps RN 1.7.4 and 1.6.7

965f01f
Select commit
Failed to load commit list.
Merged

Document GitOps RN 1.7.4 and 1.6.7 #59018

[WIP] Document GitOps RN 1.7.4 and 1.6.7
965f01f
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 19, 2023 in 4m 22s

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 #59018 [WIP] Document GitOps RN 1.7.4 and 1.6.7.
Any changes that have been made to the enterprise-4.10 branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in two sequential stages.

Stage 1: build

This stage passed.

Job OS State
186231.1 Build openshift-enterprise distro Linux passed
186231.2 Build openshift-dedicated distro Linux passed
186231.3 Build openshift-rosa distro Linux passed

Stage 2: check-with-vale

This stage passed.

Job OS State
186231.4 Run Vale against PR asciidoc files Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "cache": {
    "pip": true
  },
  "git": {
    "depth": 1
  },
  "jobs": {
    "include": [
      {
        "stage": "build",
        "name": "Build openshift-enterprise distro",
        "before_install": [
          "gem install asciidoctor",
          "gem install asciidoctor-diagram"
        ],
        "install": [
          "pip3 install pyyaml",
          "pip3 install aura.tar.gz"
        ],
        "script": [
          "python3 build.py --distro openshift-enterprise --product \"OpenShift Container Platform\" --version 4.11 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "if": "branch IN (main, enterprise-4.10, enterprise-4.11)",
        "name": "Build openshift-dedicated distro",
        "before_install": [
          "gem install asciidoctor",
          "gem install asciidoctor-diagram"
        ],
        "install": [
          "pip3 install pyyaml",
          "pip3 install aura.tar.gz"
        ],
        "script": [
          "python3 build.py --distro openshift-dedicated --product \"OpenShift Dedicated\" --version 4 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "if": "branch IN (main, enterprise-4.10, enterprise-4.11)",
        "name": "Build openshift-rosa distro",
        "before_install": [
          "gem install asciidoctor",
          "gem install asciidoctor-diagram"
        ],
        "install": [
          "pip3 install pyyaml",
          "pip3 install aura.tar.gz"
        ],
        "script": [
          "python3 build.py --distro openshift-rosa --product \"Red Hat OpenShift Service on AWS\" --version 4 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "stage": "check-with-vale",
        "if": "type IN (pull_request)",
        "name": "Run Vale against PR asciidoc files",
        "before_script": [
          "gem install asciidoctor"
        ],
        "script": [
          "travis_retry wget https://github.com/errata-ai/vale/releases/download/v2.20.1/vale_2.20.1_Linux_64-bit.tar.gz --retry-connrefused",
          "mkdir bin && tar -xvzf vale_2.20.1_Linux_64-bit.tar.gz -C bin",
          "export PATH=./bin:\"$PATH\"",
          "travis_retry vale sync",
          "chmod +x ./scripts/check-with-vale.sh",
          "travis_retry ./scripts/check-with-vale.sh $TRAVIS_PULL_REQUEST $TRAVIS_PULL_REQUEST_SHA"
        ]
      }
    ]
  },
  "stages": [
    {
      "name": "build"
    },
    {
      "name": "check-with-vale"
    }
  ]
}