-
Notifications
You must be signed in to change notification settings - Fork 270
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
Adding VersionStream for gitlab-runner-17.6 #35289
Conversation
Gen AI suggestions to solve the build error: Based on the error provided and the melange YAML file, let me analyze the build failure: • Detected Error: No explicit error shown, but the build seems to stop after package installation • Error Category: Configuration/Build • Failure Point: The build environment setup phase, specifically in the go/build step • Root Cause Analysis: • Suggested Fix: pipeline:
- uses: git-checkout
with:
repository: https://gitlab.com/gitlab-org/gitlab-runner
tag: v${{package.version}}
expected-commit: 12030cf4e1c6c9f8bc5a1e6eb515d7884e20f5c4
- uses: go/build
with:
go-version: "1.23" # Add explicit Go version
packages: .
output: gitlab-runner
ldflags: -w -X gitlab.com/gitlab-org/gitlab-runner/common.NAME=${{package.name}} -X gitlab.com/gitlab-org/gitlab-runner/common.VERSION=v${{package.version}}
# Add build dependencies
build-dependencies:
- build-base
- git • Explanation:
• Additional Notes:
• References: |
Gen AI suggestions to solve the build error: • Detected Error: • Error Category: Version/Configuration • Failure Point: • Root Cause Analysis: • Suggested Fix:
git ls-remote https://gitlab.com/gitlab-org/gitlab-runner v17.6.0
• Explanation: • Additional Notes:
• References:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for getting this going! It looks like the machine version matches from here as well: https://gitlab.com/gitlab-org/gitlab-runner/-/blob/v17.6.0/.gitlab/ci/_common.gitlab-ci.yml
No description provided.