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

fix(release): Upgrade node with long term support version #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

fix(release): Upgrade node with long term support version

816143f
Select commit
Loading
Failed to load commit list.
Open

fix(release): Upgrade node with long term support version #30

fix(release): Upgrade node with long term support version
816143f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Sep 13, 2024 in 3m 13s

Build Failed

The build failed. 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 #30 fix(release): Upgrade node with long term support version.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Ruby OS State
162.1 2.7 Linux passed
162.2 3.0.6 Linux failed
162.3 3.1 Linux passed
162.4 3.2 Linux passed

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Jammy)
Ruby Versions 2.7, 3.0.6, 3.1, 3.2
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "cache": {
    "bundler": true
  },
  "rvm": [
    "2.7",
    "3.0.6",
    "3.1",
    "3.2"
  ],
  "notifications": {
    "email": [
      {
        "enabled": false
      }
    ]
  },
  "jobs": {
    "fast_finish": true
  },
  "before_install": [
    "sudo apt-get update",
    "sudo apt-get install python-is-python3",
    "nvm install --lts",
    "nvm use node",
    "gem install bundler -v 2.4.22"
  ],
  "install": [
    "pip install --user bumpversion",
    "npm install -g semantic-release",
    "npm install -g @semantic-release/exec",
    "npm install -g @semantic-release/git",
    "npm install @semantic-release/github",
    "npm install -g @semantic-release/commit-analyzer",
    "bundle install"
  ],
  "script": [
    "bundle exec rake"
  ],
  "deploy": [
    {
      "provider": "script",
      "script": "npx semantic-release",
      "on": {
        "branch": [
          "master"
        ],
        "rvm": "2.7"
      }
    },
    {
      "provider": "rubygems",
      "api_key": "$RUBYGEMS_API_KEY",
      "gem": "ibm_vpc",
      "on": {
        "rvm": "2.7",
        "branch": [
          "master"
        ]
      }
    }
  ]
}