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

Add Github action to build release artifacts #916

Merged
merged 7 commits into from
Aug 30, 2024

Merge branch 'master' into build_tag_ci

bb3ab3d
Select commit
Loading
Failed to load commit list.
Merged

Add Github action to build release artifacts #916

Merge branch 'master' into build_tag_ci
bb3ab3d
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 30, 2024 in 10m 16s

Build Passed

The build passed. This is a change from the previous build, which failed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #916 Add Github action to build release artifacts.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Go Xcode OS State
2422.1 1.22.x xcode12.2 macOS passed
2422.2 1.22.x Linux passed
2422.3 1.22.x windows passed

Build Configuration

Build Option Setting
Language Go
Operating System macOS, Linux (Focal), windows
Go Version 1.22.x
Xcode Version xcode12.2
Build Configuration
{
  "language": "go",
  "os": [
    "osx",
    "linux",
    "windows"
  ],
  "dist": "focal",
  "go": [
    "1.22.x"
  ],
  "osx_image": [
    "xcode12.2"
  ],
  "services": [
    "docker"
  ],
  "branches": {
    "only": [
      "master",
      "/^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/"
    ]
  },
  "before_install": [
    "if [[ \"${TRAVIS_OS_NAME}\" == \"windows\" ]]; then choco install make; fi",
    "if [[ \"${TRAVIS_OS_NAME}\" == \"osx\" ]]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install bash; fi"
  ],
  "script": [
    "./ci/build.sh"
  ]
}