Magefile и go.mod обновлены

Этот коммит содержится в:
Softonik 2021-10-04 01:42:19 +03:00 коммит произвёл Nobody
родитель dc70a8b3cf
коммит d3d692adf6
2 изменённых файлов: 22 добавлений и 18 удалений

Просмотреть файл

@ -22,7 +22,7 @@ func init() {
BuildFn = build
}
func Imports() {
func GetLibs() {
Bash(`sudo docker run -ti --rm \
-h host \
--net=bridge \
@ -46,19 +46,6 @@ func Imports() {
github.com/onsi/ginkgo/ginkgo \
github.com/onsi/gomega/... \
github.com/davecgh/go-spew \
github.com/h12w/go-socks5 \
h12.io/socks \
github.com/vishvananda/netns \
github.com/milosgajdos/tenus \
github.com/docker/libcontainer/netlink \
github.com/go-ping/ping \
github.com/sirupsen/logrus \
github.com/songgao/water \
github.com/aerogo/packet \
github.com/undefinedlabs/go-mpatch \
github.com/buger/goreplay \
github.com/google/gopacket \
&& go list -m -json ... >/dev/null
'`)
}
@ -69,7 +56,7 @@ func ModTidy() {
-v /etc/localtime:/etc/localtime:ro \
-v ` + GolangVolume + `:/usr/local/go:ro \
\
-v /d1/d/gopath/_data:/gopath:rw \
-v /gopath:/gopath:rw \
-v ${PWD}:/app \
\
-e GOPATH=/gopath \
@ -83,7 +70,7 @@ func ModTidy() {
\
` + ImageName + " " +
`mod tidy`)
Imports()
GetLibs()
}
func Test() {
@ -105,10 +92,10 @@ func TestLib() {
-w /app/transpile \
-u 0 \
\
--entrypoint=/usr/local/go/bin/go \
--entrypoint=/gopath/bin/ginkgo \
\
` + ImageName + " " +
`test -gcflags=-l`)
`-gcflags=-l`)
}
func build() {

17
go.mod
Просмотреть файл

@ -1,3 +1,20 @@
module my/go-translator
go 1.17
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.16.0 // indirect
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781 // indirect
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)