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

Integrate Keycloak in int and scr env #2609

Merged
merged 8 commits into from
Aug 28, 2023

Fix createchrome for keycloak

39682ca
Select commit
Loading
Failed to load commit list.
Merged

Integrate Keycloak in int and scr env #2609

Fix createchrome for keycloak
39682ca
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 25, 2023 in 6m 31s

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 #2609 Integrate Keycloak in int and scr env.
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 (Xenial)
Node.js Version 16
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "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": [
    "16"
  ],
  "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"
    ]
  }
}