fix: resolve Go module import path issue causing Docker build failure#49
Merged
Nimbus318 merged 1 commit intoSep 19, 2025
Merged
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Nimbus318 The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Nimbus318
force-pushed
the
fix/go-module-import-paths
branch
from
September 19, 2025 09:14
ea30ef6 to
e7664c2
Compare
Nimbus318
force-pushed
the
fix/go-module-import-paths
branch
from
September 19, 2025 09:27
d230bc6 to
e1c3524
Compare
Nimbus318
force-pushed
the
fix/go-module-import-paths
branch
from
September 19, 2025 09:37
9e0a0a8 to
9c06a38
Compare
…missing dependencies - Upgrade Go version from 1.23.1 to 1.25.1 in Dockerfile to satisfy gnostic dependency requirements (github.com/google/gnostic@v0.7.1 requires go >= 1.24.6) - Add missing protoc-gen-openapi dependency in Makefile install-deps target (protoc-gen-openapi: program not found or is not executable) - Update CI workflow Go version to 1.25.1 for consistency This resolves the actual build errors in GitHub Actions: 1. Go version compatibility issue with gnostic dependency 2. Missing protoc-gen-openapi tool causing protobuf generation failures 3. Subsequent wire generation failures due to missing generated files The previous module path changes were unnecessary - the real issue was build toolchain compatibility, not Go module configuration. Signed-off-by: Yu Yin <yu.yin@dynamia.ai>
Nimbus318
force-pushed
the
fix/go-module-import-paths
branch
from
September 19, 2025 09:39
9c06a38 to
54548b1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This resolves the build error:
wire: could not import vgpu/internal/conf (invalid package name: "")
Fixes the multi-arch Docker builds in GitHub Actions.