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

OSDOCS#5179:Retroactive default SC assignment #55649

Merged
merged 1 commit into from
Apr 14, 2023

OSDOCS-5179:Retroacitve default SC assignment

f36c2b4
Select commit
Failed to load commit list.
Merged

OSDOCS#5179:Retroactive default SC assignment #55649

OSDOCS-5179:Retroacitve default SC assignment
f36c2b4
Select commit
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Pull Request succeeded Apr 6, 2023 in 6m 53s

Build Passed

The build passed. This is a change from the previous build, which canceled.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #55649 OSDOCS-5179:Retroacitve default SC assignment.
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: build

This stage passed.

Job OS State
183903.1 Build openshift-enterprise distro Linux passed
183903.2 Build openshift-dedicated distro Linux passed
183903.3 Build openshift-rosa distro Linux passed
183903.4 Build microshift distro Linux passed

Stage 2: netlify

This stage passed.

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

Stage 3: check-with-vale

This stage passed.

Job ENV OS State Notes
183903.6 Run Vale against PR asciidoc files CAN_FAIL=true Linux failed 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": 1
  },
  "jobs": {
    "allow_failures": [
      {
        "env": [
          {
            "CAN_FAIL": "true"
          }
        ]
      }
    ],
    "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.12 --no-upstream-fetch && python3 makeBuild.py"
        ]
      },
      {
        "if": "branch IN (main, enterprise-4.12, enterprise-4.13)",
        "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.12, enterprise-4.13)",
        "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.12, enterprise-4.13)",
        "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": "check-with-vale",
        "env": [
          {
            "CAN_FAIL": "true"
          }
        ],
        "if": "type IN (pull_request) AND sender != \"openshift-cherrypick-robot\"",
        "name": "Run Vale against PR asciidoc files",
        "language": "shell",
        "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",
          "./scripts/check-with-vale.sh"
        ]
      },
      {
        "stage": "netlify",
        "env": [
          {
            "CAN_FAIL": "true"
          }
        ],
        "language": "shell",
        "if": "type IN (pull_request) AND branch IN (main, enterprise-4.12, enterprise-4.13) AND sender != \"openshift-cherrypick-robot\"",
        "script": [
          "chmod +x autopreview.sh && ./autopreview.sh"
        ]
      }
    ]
  },
  "stages": [
    {
      "name": "build"
    },
    {
      "name": "netlify"
    },
    {
      "name": "check-with-vale"
    }
  ]
}