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

[stable] Update build #2850

Merged
merged 3 commits into from
May 29, 2024

Merge pull request #2773 from Hyperkid123/jotai-migration

babf03a
Select commit
Loading
Failed to load commit list.
Merged

[stable] Update build #2850

Merge pull request #2773 from Hyperkid123/jotai-migration
babf03a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded May 29, 2024 in 11m 7s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the master branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

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

Stage 1: Test

This stage passed.

Job Node.js ENV OS State
13532.1 18 REPO="[email protected]:RedHatInsights/insights-chrome-build" Linux passed

Stage 2: Deploy dev-beta

This stage passed.

Job Node.js ENV OS State
13532.2 deploy:dev-beta 18 REPO="[email protected]:RedHatInsights/insights-chrome-build" Linux passed

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 && npm run test:ct && npx codecov"
        ]
      },
      {
        "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"
    ]
  }
}