Edge-home-orchestration-go: メイク中にきれいに行く

作成日 2021年07月13日  ·  9コメント  ·  ソース: lf-edge/edge-home-orchestration-go

make中にgo.sumファイルとvendorフォルダーが存在しない場合、次のエラーが発生します。

make distcleanログ

t25kim<strong i="11">@t25kim</strong>:~/work/edge-home-orchestration-go$ make distclean

--------------------------------------
  Build clean
--------------------------------------
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
        go mod download github.com/Microsoft/go-winio
make: *** [Makefile:185: clean] Error 1
t25kim<strong i="12">@t25kim</strong>:~/work/edge-home-orchestration-go$ vi Makefile
t25kim<strong i="13">@t25kim</strong>:~/work/edge-home-orchestration-go$ GO111MODULE=on go clean
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
        go mod download github.com/Microsoft/go-winio

makeログ

t25kim<strong i="19">@t25kim</strong>:~/work/edge-home-orchestration-go$ make
make clean
make[1]: Entering directory '/home/t25kim/work/edge-home-orchestration-go'

--------------------------------------
  Build clean
--------------------------------------
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
        go mod download github.com/Microsoft/go-winio
make[1]: *** [Makefile:185: clean] Error 1
make[1]: Leaving directory '/home/t25kim/work/edge-home-orchestration-go'
make: *** [Makefile:236: all] Error 2
bug

最も参考になるコメント

@ t25kim go 1.16.4バージョンを使用して、このエラーを再現することができ、すでに修正方法を知っています。 今日はテストして更新します

全てのコメント9件

@ t25kimこのエラーを再現できません。アクションについて詳しく説明してください。

@ t25kimこのエラーを再現できません。アクションについて詳しく説明してください。

@tdrozdovsky go.sumファイルとvendorフォルダーを削除した後、 make distcleanまたはmakeを実行できますか?

virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  bin  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ make distclean 

--------------------------------------
  Build clean
--------------------------------------
make[1]: Entering directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
make[1]: Leaving directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ 

gitcloneからこれを試してみましょう。

t25kim<strong i="6">@t25kim</strong>:~$ git clone https://github.com/lf-edge/edge-home-orchestration-go.git
Cloning into 'edge-home-orchestration-go'...
remote: Enumerating objects: 5013, done.
remote: Counting objects: 100% (527/527), done.
remote: Compressing objects: 100% (301/301), done.
remote: Total 5013 (delta 214), reused 458 (delta 186), pack-reused 4486
Receiving objects: 100% (5013/5013), 2.10 MiB | 6.54 MiB/s, done.
Resolving deltas: 100% (2859/2859), done.
t25kim<strong i="7">@t25kim</strong>:~$ cd edge-home-orchestration-go/
t25kim<strong i="8">@t25kim</strong>:~/edge-home-orchestration-go$ make distclean

--------------------------------------
  Build clean
--------------------------------------
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
    go mod download github.com/Microsoft/go-winio
make: *** [Makefile:185: clean] Error 1
t25kim<strong i="9">@t25kim</strong>:~/edge-home-orchestration-go$ make
make clean
make[1]: Entering directory '/home/t25kim/edge-home-orchestration-go'

--------------------------------------
  Build clean
--------------------------------------
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
    go mod download github.com/Microsoft/go-winio
make[1]: *** [Makefile:185: clean] Error 1
make[1]: Leaving directory '/home/t25kim/edge-home-orchestration-go'
make: *** [Makefile:236: all] Error 2
t25kim<strong i="10">@t25kim</strong>:~/edge-home-orchestration-go$ 

@ t25kimこれは魔法です! ))))

virtual-pc@virtualpc-VirtualBox:~/projects/test$ git clone https://github.com/lf-edge/edge-home-orchestration-go.git
Cloning into 'edge-home-orchestration-go'...
remote: Enumerating objects: 5013, done.
remote: Counting objects: 100% (527/527), done.
remote: Compressing objects: 100% (301/301), done.
remote: Total 5013 (delta 214), reused 458 (delta 186), pack-reused 4486
Receiving objects: 100% (5013/5013), 2.10 MiB | 1.24 MiB/s, done.
Resolving deltas: 100% (2859/2859), done.
virtual-pc@virtualpc-VirtualBox:~/projects/test$ cd edge-home-orchestration-go/
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ make distclean 

--------------------------------------
  Build clean
--------------------------------------
make[1]: Entering directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
make[1]: Leaving directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  go.sum  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ rm go.sum 
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ make clean

--------------------------------------
  Build clean
--------------------------------------
make[1]: Entering directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
make[1]: Leaving directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ 

@ t25kimこれは魔法です! ))))

virtual-pc@virtualpc-VirtualBox:~/projects/test$ git clone https://github.com/lf-edge/edge-home-orchestration-go.git
Cloning into 'edge-home-orchestration-go'...
remote: Enumerating objects: 5013, done.
remote: Counting objects: 100% (527/527), done.
remote: Compressing objects: 100% (301/301), done.
remote: Total 5013 (delta 214), reused 458 (delta 186), pack-reused 4486
Receiving objects: 100% (5013/5013), 2.10 MiB | 1.24 MiB/s, done.
Resolving deltas: 100% (2859/2859), done.
virtual-pc@virtualpc-VirtualBox:~/projects/test$ cd edge-home-orchestration-go/
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ make distclean 

--------------------------------------
  Build clean
--------------------------------------
make[1]: Entering directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
make[1]: Leaving directory '/home/virtual-pc/projects/test/edge-home-orchestration-go/examples/native'
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  go.sum  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools

make distcleanときに、どのようにしてgo.sumを取得しましたか?

virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ GO111MODULE=on go clean
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  go.sum  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
virtual-pc@virtualpc-VirtualBox:~/projects/test/edge-home-orchestration-go$

@tdrozdovsky理由を見つけました。 go v1.16でそれを行うことができますか?

t25kim<strong i="7">@t25kim</strong>:~/edge-home-orchestration-go$ go version
go version go1.16.5 linux/amd64
t25kim<strong i="8">@t25kim</strong>:~/edge-home-orchestration-go$ make distclean

--------------------------------------
  Build clean
--------------------------------------
go: github.com/Microsoft/[email protected]: missing go.sum entry; to add it:
    go mod download github.com/Microsoft/go-winio
make: *** [Makefile:185: clean] Error 1
t25kim<strong i="11">@t25kim</strong>:~/edge-home-orchestration-go$ go version
go version go1.15.14 linux/amd64
t25kim<strong i="12">@t25kim</strong>:~/edge-home-orchestration-go$ ls
api  build  cmd  configs  deployments  Dockerfile  docs  examples  go.mod  internal  Kconfig  LICENSE  Makefile  README.md  test  third_party  tools
t25kim<strong i="13">@t25kim</strong>:~/edge-home-orchestration-go$ make distclean

--------------------------------------
  Build clean
--------------------------------------
make[1]: Entering directory '/home/t25kim/edge-home-orchestration-go/examples/native'
make[1]: Leaving directory '/home/t25kim/edge-home-orchestration-go/examples/native'

@ t25kim go 1.16.4バージョンを使用して、このエラーを再現することができ、すでに修正方法を知っています。 今日はテストして更新します

このページは役に立ちましたか?
0 / 5 - 0 評価