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

Build Deploy Frontends Jenkinsfile Effort #2593

Closed
wants to merge 59 commits into from

force new build

3f64977
Select commit
Loading
Failed to load commit list.
Closed

Build Deploy Frontends Jenkinsfile Effort #2593

force new build
3f64977
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 22, 2023 in 5m 57s

Build Passed

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

Details

This is a pull request build.

It is running a build against the merge commit, after merging #2593 Build Deploy Frontends Jenkinsfile Effort.
Any changes that have been made to the master 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 Node.js
Operating System Linux (Jammy)
Node.js Version 18
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": true,
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ],
    "slack": [
      {
        "rooms": [
          {
            "secure": "d3g5oKl5kfzi2L96QTrj2g77lzLWzjnM6Ct2OTXRrk90GxxhwHS8RH4Q1IgBqkQjw68nkq7CNE9oAs+pt3si8kT4GQ164YLoTMVkDPBGOoOoMACPyanxQOEluUfdLEDIzChy/7EdlY3l1J2IM+lOK4e95jUwsT9BSXBsSladP++1EUiZfon9JcQSiSZa0e1/cVxLpEDuBB2cruUSTZ9sUATe/XZ0uH1EGzrooQJMkRgdty5UyNSsMxkvAY0Haivq8u9/gWAsLar0bA/90M5CVK7yohh9fY9UfTUbXVqwR3dFAXuW+SURrFVnPAX4FLZt/D09cg/CVCvoasiZdNi9RAeKOCfN+FoxB2ZJNnuM+4KDJX3dxnatd/stmEH1bcd75i4mh9zOWE1HX5d23HuZ4sKdDPpvhG3l7SpZfhLv0/EKL10ld9RdIaiTO2uPI3rsoyDeArzeV+09+dbB1iPKnS/3/Iw5KLhbew3mdJXKVfRk6KYcJySjT8EltrNy5Y7mty7/JzWssSpIpkMCnu6RGAtXO2v/jUfFm1WvsKK5BeH5efbLi1sjMNbVTeA3Bp8pvRPuw+50l94uDfeQ1HUTrq5zKXMUaG9dTdaYZX4fEDMmrbM1TLudjb9Xj4elaA5ioBH0gRFxAnSVTmrKFtFoCRVaqfmj3ceqxttCLUpkfvI="
          }
        ]
      }
    ]
  },
  "node_js": [
    "18"
  ],
  "before_install": [
    "npm install -g npm@latest"
  ],
  "install": [
    "npm ci"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Test",
        "if": "branch != nightly",
        "script": [
          "npm run circular && npm run lint && npm run test && npx codecov && npm run test:ct"
        ]
      },
      {
        "stage": "Deploy prod-stable",
        "if": "branch = prod-stable AND type != pull_request",
        "name": "deploy:prod-stable",
        "script": [
          "npm run build && curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s"
        ]
      },
      {
        "stage": "Deploy prod-beta",
        "if": "branch = prod-beta AND type != pull_request",
        "name": "deploy:prod-beta",
        "script": [
          "npm run build:beta && curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s"
        ]
      },
      {
        "stage": "Deploy dev-stable",
        "if": "branch IN (master-stable, qa-stable, ci-stable) AND type != pull_request",
        "name": "deploy:dev-stable",
        "script": [
          "npm run build:dev && curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s"
        ]
      },
      {
        "stage": "Deploy dev-beta",
        "if": "branch IN (master, qa-beta) AND type != pull_request",
        "name": "deploy:dev-beta",
        "script": [
          "BETA=true npm run build:dev && curl -sSL https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master/src/bootstrap.sh | bash -s"
        ]
      }
    ]
  },
  "env": [
    "global={:REPO=>\"\\\"[email protected]:RedHatInsights/insights-chrome-build\\\"\"}={:REPO_DIR=>\"\\\"insights-chrome-build\\\"\"}"
  ],
  "cache": {
    "directories": [
      "$HOME/.npm",
      ".cache"
    ]
  }
}