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

Beta release v9.2.2 #1999

Merged
merged 5 commits into from
Jul 12, 2024

Merge branch 'master' into dev

3cab3dd
Select commit
Loading
Failed to load commit list.
Merged

Beta release v9.2.2 #1999

Merge branch 'master' into dev
3cab3dd
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 12, 2024 in 31m 7s

Build Passed

The build passed, just like the previous build.

Details

This is a normal build for the dev 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 macOS
Node.js Version 18.18.0
Xcode Version xcode14.2
Build Configuration
{
  "language": "node_js",
  "os": [
    "osx"
  ],
  "osx_image": [
    "xcode14.2"
  ],
  "sudo": true,
  "branches": {
    "only": [
      "release",
      "master",
      "dev"
    ]
  },
  "git": {
    "submodules": false
  },
  "node_js": [
    "18.18.0"
  ],
  "cache": {
    "directories": [
      "$HOME/.electron"
    ]
  },
  "before_install": [
    "if [ \"$TRAVIS_BRANCH\" = \"release\" ]; then openssl aes-256-cbc -K $encrypted_fec05b564c85_key -iv $encrypted_fec05b564c85_iv -in id_rsa.enc -out packaging/id_rsa -d; fi",
    "chmod +x ./packaging/add-osx-cert.sh;",
    "./packaging/add-osx-cert.sh;"
  ],
  "script": [
    "if [ \"$TRAVIS_PULL_REQUEST\" != \"false\" ]; then npm test; fi",
    "if [ \"$TRAVIS_PULL_REQUEST\" = \"false\" ]; then npm test && travis_wait 30 ./packaging/release --branch=$TRAVIS_BRANCH --dist=mac --platform=mac --token=$GH_TOKEN && travis_wait 30 ./packaging/release --branch=$TRAVIS_BRANCH --dist=mac --platform=macArm --token=$GH_TOKEN; fi"
  ]
}