Skip to content

Bump patch version

10164eb
Select commit
Loading
Failed to load commit list.
Draft

Update CI mode script to allow passing in args #421

Bump patch version
10164eb
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Apr 11, 2026 in 12m 36s

Build Failed

The build failed.

Details

This is a normal build for the gyozaguy/update_ci_script 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 (Noble)
Node.js Version 24
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "node_js": [
    "24"
  ],
  "before_install": [
    "git config --global url.\"https://git@\".insteadOf git://",
    "echo -e \"machine github.com\\n  login $CI_USER_TOKEN\" > ~/.netrc",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> ~/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> ~/.npmrc",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> packages/react-scripts/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> packages/react-scripts/.npmrc"
  ],
  "install": [
    "npm install",
    "cd packages/react-scripts",
    "npm install",
    "cd ../../"
  ],
  "script": [
    "npm test",
    "node publishPrReleaseAndCreateFreshCraTemplate.js",
    "cd ${HOME}/tmp/fresh-cra-template",
    "echo \"//familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/:_authToken=${NPM_PUBLISH_TOKEN}\" >> ${HOME}/tmp/fresh-cra-template/.npmrc",
    "echo \"@fs:registry=https://familysearch.jfrog.io/familysearch/api/npm/fs-npm-prod-virtual/\" >> ${HOME}/tmp/fresh-cra-template/.npmrc",
    "CI=true npm test",
    "npm run build"
  ],
  "before_deploy": [
    "cd ${TRAVIS_BUILD_DIR}/packages/react-scripts"
  ],
  "deploy": [
    {
      "dpl_version": "2.0.3.beta.4",
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "frontierMaster"
        ]
      }
    },
    {
      "dpl_version": "2.0.3.beta.4",
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "v7.x"
        ]
      }
    },
    {
      "dpl_version": "2.0.3.beta.4",
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "npm run fs-publish -- --allow-earlier-version",
      "on": {
        "branch": [
          "next"
        ]
      }
    },
    {
      "dpl_version": "2.0.3.beta.4",
      "provider": "script",
      "edge": true,
      "cleanup": false,
      "script": "cd ${TRAVIS_BUILD_DIR} && ./freshCraTemplateUpdate.sh",
      "on": {
        "branch": [
          "frontierMaster"
        ]
      }
    }
  ],
  "branches": {
    "except": [
      "master"
    ]
  }
}