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

link my account externally to RC #2156

Merged
merged 2 commits into from
Aug 7, 2024

Merge pull request #2154 from NYPL/SCC-4184/pass-reverse-proxy-enable…

7cded5a
Select commit
Loading
Failed to load commit list.
Merged

link my account externally to RC #2156

Merge pull request #2154 from NYPL/SCC-4184/pass-reverse-proxy-enable…
7cded5a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 18, 2024 in 2m 41s

Build Passed

The build passed, just like the previous build.

Details

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

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 10.17.0
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "node_js": [
    "10.17.0"
  ],
  "before_install": [
    "export TZ=America/New_York"
  ],
  "install": [
    "npm rebuild node-sass && npm install"
  ],
  "before_script": [
    "npm run dist"
  ],
  "script": [
    "npm test"
  ],
  "before_deploy": [
    "echo 'All unit tests passed; Successfull built distribution assets; Preparing to deploy Discovery Research Catalog to AWS.'"
  ],
  "deploy": [
    {
      "provider": "elasticbeanstalk",
      "skip_cleanup": false,
      "access_key_id": "$AWS_ACCESS_KEY_ID_QA",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY_QA",
      "region": "us-east-1",
      "app": "discovery-ui",
      "env": "DiscoveryUi-production",
      "bucket_path": "discovery-ui-shep",
      "on": {
        "repo": "NYPL/discovery-front-end",
        "branch": [
          "production"
        ]
      },
      "bucket": "elasticbeanstalk-us-east-1-946183545209"
    },
    {
      "provider": "elasticbeanstalk",
      "skip_cleanup": false,
      "access_key_id": "$AWS_ACCESS_KEY_ID_QA",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY_QA",
      "region": "us-east-1",
      "app": "discovery-ui",
      "env": "DiscoveryUi-10-17-qa",
      "bucket_path": "discovery-ui-shep",
      "on": {
        "repo": "NYPL/discovery-front-end",
        "all_branches": true,
        "condition": [
          "$TRAVIS_TAG =~ ^qa-.*"
        ]
      },
      "bucket": "elasticbeanstalk-us-east-1-946183545209"
    },
    {
      "provider": "elasticbeanstalk",
      "skip_cleanup": false,
      "access_key_id": "$AWS_ACCESS_KEY_ID_QA",
      "secret_access_key": "$AWS_SECRET_ACCESS_KEY_QA",
      "region": "us-east-1",
      "app": "discovery-ui",
      "env": "DiscoveryUi-edd-training",
      "bucket_path": "discovery-ui-edd-training",
      "on": {
        "repo": "NYPL/discovery-front-end",
        "all_branches": true,
        "condition": [
          "$TRAVIS_TAG =~ ^qa2-.*"
        ]
      },
      "bucket": "elasticbeanstalk-us-east-1-946183545209"
    }
  ],
  "after_deploy": [
    "echo 'Successfully executed deploy trigger for Discovery Research Catalog on AWS'"
  ],
  "env": [
    "global=AWS_ACCESS_KEY_ID_DEVELOPMENT=[secure] AWS_SECRET_ACCESS_KEY_DEVELOPMENT=[secure]=AWS_ACCESS_KEY_ID_QA=[secure] AWS_SECRET_ACCESS_KEY_QA=[secure]=AWS_ACCESS_KEY_ID_PRODUCTION=[secure] AWS_SECRET_ACCESS_KEY_PRODUCTION=[secure]=AWS_ACCESS_KEY_ID_DEVELOPMENT=[secure] AWS_SECRET_ACCESS_KEY_DEVELOPMENT=[secure] AWS_ACCESS_KEY_ID_QA=[secure] AWS_SECRET_ACCESS_KEY_QA=[secure] AWS_ACCESS_KEY_ID_PRODUCTION=[secure] AWS_SECRET_ACCESS_KEY_PRODUCTION=[secure]"
  ]
}