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

RHDEVDOCS-5435: Clean up Web Terminal Operator uninstall documentation #61733

Merged
merged 1 commit into from
Jul 5, 2023

OSDOCS-6640: Clean up Web Terminal Operator uninstall documentation

58d0e3d
Select commit
Failed to load commit list.
Merged

RHDEVDOCS-5435: Clean up Web Terminal Operator uninstall documentation #61733

OSDOCS-6640: Clean up Web Terminal Operator uninstall documentation
58d0e3d
Select commit
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jun 26, 2023 in 11m 4s

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 #61733 OSDOCS#6640: Clean up Web Terminal Operator uninstall documentation.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has six jobs, running in three sequential stages.

Stage 1: validate

This stage passed.

Job OS State
196975.1 Validate updated assemblies with Asciidoctor Linux passed

Stage 2: build

This stage passed.

Job OS State
196975.2 Build openshift-enterprise distro Linux passed
196975.3 Build openshift-dedicated distro Linux passed
196975.4 Build openshift-rosa distro Linux passed
196975.5 Build microshift distro Linux passed

Stage 3: netlify

This stage passed.

Job ENV OS State Notes
196975.6 CAN_FAIL=true Linux passed This job is allowed to fail.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "cache": {
    "pip": true
  },
  "git": {
    "depth": 2
  },
  "jobs": {
    "allow_failures": [
      {
        "env": [
          {
            "CAN_FAIL": "true"
          }
        ]
      }
    ],
    "include": [
      {
        "stage": "validate",
        "name": "Validate updated assemblies with Asciidoctor",
        "install": [
          "gem install asciidoctor",
          "gem install asciidoctor-diagram"
        ],
        "script": [
          "chmod +x ./scripts/check-asciidoctor-build.sh",
          "./scripts/check-asciidoctor-build.sh"
        ]
      },
      {
        "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.14 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "if": "branch IN (main, enterprise-4.13, enterprise-4.14)",
        "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.13, enterprise-4.14)",
        "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"
        ]
      },
      {
        "if": "branch IN (main, enterprise-4.13, enterprise-4.14)",
        "name": "Build microshift distro",
        "before_install": [
          "gem install asciidoctor",
          "gem install asciidoctor-diagram"
        ],
        "install": [
          "pip3 install pyyaml",
          "pip3 install aura.tar.gz"
        ],
        "script": [
          "python3 build.py --distro microshift --product \"MicroShift\" --version 4 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "stage": "netlify",
        "env": [
          {
            "CAN_FAIL": "true"
          }
        ],
        "language": "shell",
        "if": "type IN (pull_request) AND branch IN (main, enterprise-4.13, enterprise-4.14) AND sender != \"openshift-cherrypick-robot\"",
        "script": [
          "chmod +x autopreview.sh && ./autopreview.sh"
        ]
      }
    ]
  },
  "stages": [
    {
      "name": "validate"
    },
    {
      "name": "build"
    },
    {
      "name": "netlify"
    }
  ]
}