Build Fails Due to Dependency Version Mismatch
まだ誰も着手していません。
評価
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 初心者へのやさしさ
- 25/100
- issue の種類
- バグ
- 明瞭さ
- おおむね明確
- 活発さ
- 停滞
- 技術スタック
- go
- 領域
- build-system
調査の方向性
まず、現在の Go ビルドで失敗を再現し、cmd/ssh2docker からの依存関係のインポートを調べます。github.com/codegangsta/cli に対して提案されている go.mod の置き換えと、関連するモジュールパスを確認し、その後、更新された依存関係設定でプロジェクトが正常にビルドできることを検証します。README.md はビルド手順を記載する候補の場所として言及されています。
索引モデルが issue の本文から書いたものです。
説明
Description
While rebuilding the project using the latest version of Go, with Go's official recommendation to use gomodule for initialization and building, we found that the build process fails due to mismatched module path.
The following error log was produced during the build process:
......
go: found github.com/codegangsta/cli in github.com/codegangsta/cli v1.22.15
go: found github.com/smartystreets/goconvey/convey in github.com/smartystreets/goconvey v1.8.1
go: github.com/moul/ssh2docker/cmd/ssh2docker imports
github.com/codegangsta/cli: github.com/codegangsta/[email protected]: parsing go.mod:
module declares its path as: github.com/urfave/cli
but was required as: github.com/codegangsta/cli
Result
The build fails with errors related to mismatched module path.
The error dependency is github.com/codegangsta/cli.
Reason
The error log suggests module path declaration github.com/urfave/cli in go.mod, which is inconsistent with import path github.com/codegangsta/cli .
Proposed Solution
To resolve this issue, we analyzed the project and identified the correct versions of the required dependencies.
The analysis shows that the correct declaration for the dependency is replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.9.
Consider adopting this suggested version to prevent other developers from encountering build failures when constructing the project.
This information can be documented in the README.md file or another relevant location.
Additional Suggestions
To ensure reproducible builds and align with the evolving trends of the Go programming language, it is recommended that the current project be migrated to the Go module mechanism.
Updating to the go module mechanism allows for managing third-party dependency versions through the go.mod file, which provides a centralized and consistent way to specify dependency constraints.
We have generated a go.mod file with the correct versions of the third-party dependencies needed for this project.
The suggested go.mod file is as follows:
require github.com/apex/log v1.8.1-0.20200817094143-421394d88c94
require github.com/parnurzeal/gorequest v0.3.1-0.20240221155414-2f6d15e4738b
require github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568
require github.com/pkg/errors v0.9.2-0.20201214064552-5dd12d0cfe7f // indirect
require github.com/stretchr/testify v1.10.0 // indirect
replace github.com/cpuguy83/go-md2man => github.com/cpuguy83/go-md2man/v2 v2.0.3
require github.com/mitchellh/go-homedir v1.1.0
require github.com/kr/pty v1.1.8
require github.com/creack/pty v1.1.23 // indirect
replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.9
replace github.com/moul/http2curl => moul.io/http2curl/v2 v2.3.1-0.20221024080105-10c404f653f7
require (
github.com/codegangsta/cli v0.0.0-00010101000000-000000000000
github.com/smartystreets/goconvey v1.8.1
golang.org/x/crypto v0.32.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/elazarl/goproxy v1.7.0 // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/smarty/assertions v1.15.0 // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/sys v0.29.0 // indirect
moul.io/http2curl v1.0.0 // indirect
)
Additional Information:
This issue was identified as part of our research project focused on automating the analysis of GOPATH projects to provide accurate dependency versions for seamless migration to Go Modules. We value your feedback and would appreciate any comments or suggestions regarding this approach.
- 主要言語
- Go
- スター
- 198
- フォーク
- 18
- PR マージ指標
- 30日以内にマージされた PR はありません
環境構築
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
moul/ssh2docker のほかの issue
-
Dependency Dashboardオープン
難易度 4/5 3〜5日 初心者へのやさしさ 15/100
moul/ssh2docker#96 ·
-
難易度 4/5 3〜5日 初心者へのやさしさ 25/100
moul/ssh2docker#89 ·
-
stdin -> docker exec is closed too early再び着手できるかも @moul が 3725 日前に担当しましたが、オープン中のプルリクエストはありません。 オープンbug ready
moul/ssh2docker#82 · コメント 3 件 · 担当者 1 名 ·
-
Add an API + web admin to manage and monitor server state再び着手できるかも @moul が 3725 日前に担当しましたが、オープン中のプルリクエストはありません。 オープンfreeze
moul/ssh2docker#81 · 担当者 1 名 ·
-
Also cleanup containers on remote when option --clean-on-startup is present再び着手できるかも @moul が 4000 日前に担当しましたが、オープン中のプルリクエストはありません。 オープンfreeze
moul/ssh2docker#60 · コメント 1 件 · 担当者 1 名 ·
moul/ssh2docker の issue をすべて見る
似ている issue
-
bug needs triage
難易度 2/5 1〜3時間 初心者へのやさしさ 78/100
メンテナーはふだん 1 日以内に返信
-
bug P2 reliability
難易度 2/5 1〜3時間 初心者へのやさしさ 88/100
afreidah/s3-orchestrator#1564 ·
メンテナーはふだん 1 日以内に返信
-
難易度 2/5 1〜3時間 初心者へのやさしさ 84/100
blinklabs-io/gouroboros#2577 ·
メンテナーはふだん 1 日以内に返信
-
agentic-workflows
難易度 2/5 1〜3時間 初心者へのやさしさ 68/100
メンテナーはふだん 1 日以内に返信
-
難易度 2/5 1〜3時間 初心者へのやさしさ 88/100
メンテナーはふだん 1 日以内に返信