Skip to content

Commit

Permalink
Merge pull request #3079 from thaJeztah/0.8_update_go_and_debian
Browse files Browse the repository at this point in the history
[0.8] update to go1.18, debian bullseye
  • Loading branch information
tonistiigi committed Sep 7, 2022
2 parents bc07b2b + 0633b89 commit 4c987d0
Show file tree
Hide file tree
Showing 439 changed files with 22,992 additions and 13,300 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.13
go-version: 1.18
-
name: Cache Go modules
uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ linters:
- misspell
- unused
- varcheck
- golint
- revive
- staticcheck
- typecheck
- structcheck
Expand All @@ -28,5 +28,5 @@ linters:
issues:
exclude-rules:
- linters:
- golint
- revive
text: "stutters"
18 changes: 10 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# syntax = docker/dockerfile:1.2
# syntax=docker/dockerfile:1

ARG RUNC_VERSION=v1.0.0-rc93
ARG CONTAINERD_VERSION=v1.4.2
Expand All @@ -23,7 +23,7 @@ RUN apk add --no-cache git
FROM --platform=$BUILDPLATFORM tonistiigi/xx:golang@sha256:6f7d999551dd471b58f70716754290495690efa8421e0a1fcf18eb11d0c0a537 AS xgo

# gobuild is base stage for compiling go/cgo
FROM --platform=$BUILDPLATFORM golang:1.13-buster AS gobuild-minimal
FROM --platform=$BUILDPLATFORM golang:1.18-bullseye AS gobuild-minimal
COPY --from=xgo / /
RUN apt-get update && apt-get install --no-install-recommends -y libseccomp-dev file

Expand All @@ -36,18 +36,18 @@ RUN dpkg --add-architecture s390x && \
gcc-s390x-linux-gnu libc6-dev-s390x-cross libseccomp-dev:s390x \
crossbuild-essential-ppc64el libseccomp-dev:ppc64el \
--no-install-recommends

FROM gobuild-minimal AS gobuild-cross-amd64-arm
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
RUN apt-get update && apt-get install --no-install-recommends -y libseccomp2=2.4.4-1~bpo10+1 libseccomp-dev=2.4.4-1~bpo10+1
RUN echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list
RUN apt-get update && apt-get install --no-install-recommends -y libseccomp2=2.5.1-1+deb11u1 libseccomp-dev=2.5.1-1+deb11u1
RUN dpkg --add-architecture armel && \
dpkg --add-architecture armhf && \
dpkg --add-architecture arm64 && \
apt-get update && \
apt-get --no-install-recommends install -y \
crossbuild-essential-armel libseccomp2:armel=2.4.4-1~bpo10+1 libseccomp-dev:armel=2.4.4-1~bpo10+1 \
crossbuild-essential-armhf libseccomp2:armhf=2.4.4-1~bpo10+1 libseccomp-dev:armhf=2.4.4-1~bpo10+1 \
crossbuild-essential-arm64 libseccomp2:arm64=2.4.4-1~bpo10+1 libseccomp-dev:arm64=2.4.4-1~bpo10+1 \
crossbuild-essential-armel libseccomp2:armel=2.5.1-1+deb11u1 libseccomp-dev:armel=2.5.1-1+deb11u1 \
crossbuild-essential-armhf libseccomp2:armhf=2.5.1-1+deb11u1 libseccomp-dev:armhf=2.5.1-1+deb11u1 \
crossbuild-essential-arm64 libseccomp2:arm64=2.5.1-1+deb11u1 libseccomp-dev:arm64=2.5.1-1+deb11u1 \
--no-install-recommends

# define all valid target configurations for compilation
Expand Down Expand Up @@ -158,6 +158,7 @@ WORKDIR /go/src/github.com/containerd/containerd

FROM containerd-base AS containerd
ARG CONTAINERD_VERSION
ARG GO111MODULE=off
RUN --mount=from=containerd-src,src=/usr/src/containerd,readwrite --mount=target=/root/.cache,type=cache \
git fetch origin \
&& git checkout -q "$CONTAINERD_VERSION" \
Expand All @@ -169,6 +170,7 @@ RUN --mount=from=containerd-src,src=/usr/src/containerd,readwrite --mount=target
# containerd v1.3 for integration tests
FROM containerd-base as containerd-alt
ARG CONTAINERD_ALT_VERSION
ARG GO111MODULE=off
RUN --mount=from=containerd-src,src=/usr/src/containerd,readwrite --mount=target=/root/.cache,type=cache \
git fetch origin \
&& git checkout -q "$CONTAINERD_ALT_VERSION" \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ buildctl build \
buildctl build \
--frontend gateway.v0 \
--opt source=docker/dockerfile \
--opt context=git://github.com/moby/moby \
--opt context=https://github.com/moby/moby.git \
--opt build-arg:APT_MIRROR=cdn-fastly.deb.debian.org
```

Expand Down
2 changes: 1 addition & 1 deletion api/services/control/generate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package moby_buildkit_v1 //nolint:golint
package moby_buildkit_v1 //nolint:revive

//go:generate protoc -I=. -I=../../../vendor/ -I=../../../../../../ --gogo_out=plugins=grpc:. control.proto
2 changes: 1 addition & 1 deletion api/types/generate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package moby_buildkit_v1_types //nolint:golint
package moby_buildkit_v1_types //nolint:revive

//go:generate protoc -I=. -I=../../vendor/ -I=../../../../../ --gogo_out=plugins=grpc:. worker.proto
1 change: 1 addition & 0 deletions cache/contenthash/filehash_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package contenthash
Expand Down
1 change: 1 addition & 0 deletions cache/contenthash/filehash_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package contenthash
Expand Down
5 changes: 2 additions & 3 deletions cache/remotecache/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"github.com/moby/buildkit/util/contentutil"
"github.com/moby/buildkit/util/resolver"
digest "github.com/opencontainers/go-digest"
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
specs "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/pkg/errors"
)
Expand Down Expand Up @@ -93,11 +92,11 @@ func (dsl *withDistributionSourceLabel) SetDistributionSourceLabel(ctx context.C
if err != nil {
return err
}
_, err = hf(ctx, ocispec.Descriptor{Digest: dgst})
_, err = hf(ctx, specs.Descriptor{Digest: dgst})
return err
}

func (dsl *withDistributionSourceLabel) SetDistributionSourceAnnotation(desc ocispec.Descriptor) ocispec.Descriptor {
func (dsl *withDistributionSourceLabel) SetDistributionSourceAnnotation(desc specs.Descriptor) specs.Descriptor {
if desc.Annotations == nil {
desc.Annotations = map[string]string{}
}
Expand Down
3 changes: 3 additions & 0 deletions client/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1076,6 +1076,9 @@ func testClientGatewayContainerPlatformPATH(t *testing.T, sb integration.Sandbox
// testClientGatewayExecError is testing gateway exec to recreate the container
// process for a failed execop.
func testClientGatewayExecError(t *testing.T, sb integration.Sandbox) {
if sb.Snapshotter() == "stargz" {
t.Skip("Failing on 0.8 branch with Go 1.18; see https://github.com/moby/buildkit/pull/3079")
}
requiresLinux(t)

ctx := context.TODO()
Expand Down
3 changes: 2 additions & 1 deletion client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2111,6 +2111,7 @@ func testBuildPushAndValidate(t *testing.T, sb integration.Sandbox) {
}

func testStargzLazyPull(t *testing.T, sb integration.Sandbox) {
t.Skip("Failing on 0.8 branch with Go 1.18; see https://github.com/moby/buildkit/pull/3079")
skipDockerd(t, sb)
requiresLinux(t)

Expand Down Expand Up @@ -3104,7 +3105,7 @@ func testSourceMapFromRef(t *testing.T, sb integration.Sandbox) {

frontend := func(ctx context.Context, c gateway.Client) (*gateway.Result, error) {
st := llb.Scratch().File(
llb.Mkdir("foo/bar", 0600), //fails because /foo doesn't exist
llb.Mkdir("foo/bar", 0600), // fails because /foo doesn't exist
sm.Location([]*pb.Range{{Start: pb.Position{Line: 3, Character: 1}}}),
)

Expand Down
1 change: 1 addition & 0 deletions client/client_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package client
Expand Down
1 change: 1 addition & 0 deletions cmd/buildctl/main_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package main
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/config/gcpolicy_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package config
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/config/gcpolicy_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package config
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/main_containerd_worker.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build (linux && !no_containerd_worker) || (windows && !no_containerd_worker)
// +build linux,!no_containerd_worker windows,!no_containerd_worker

package main
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/main_oci_worker.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build linux && !no_oci_worker
// +build linux,!no_oci_worker

package main
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/main_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package main
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/main_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package main
Expand Down
1 change: 1 addition & 0 deletions cmd/buildkitd/util_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !linux
// +build !linux

package main
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit0/buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.13-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.18-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit1/buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.13-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.18-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit2/buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.13-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.18-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
2 changes: 1 addition & 1 deletion examples/buildkit3/buildkit.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.13-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.18-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
1 change: 1 addition & 0 deletions examples/gobuild/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build ignore
// +build ignore

package main
Expand Down
2 changes: 1 addition & 1 deletion examples/nested-llb/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func main() {
}

func goBuildBase() llb.State {
goAlpine := llb.Image("docker.io/library/golang:1.13-alpine")
goAlpine := llb.Image("docker.io/library/golang:1.18-alpine")
return goAlpine.
AddEnv("PATH", "/usr/local/go/bin:"+system.DefaultPathEnvUnix).
AddEnv("GOPATH", "/go").
Expand Down
1 change: 1 addition & 0 deletions executor/oci/spec_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package oci
Expand Down
1 change: 1 addition & 0 deletions executor/oci/spec_windows.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build windows
// +build windows

package oci
Expand Down
1 change: 1 addition & 0 deletions executor/runcexecutor/executor_common.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !linux
// +build !linux

package runcexecutor
Expand Down
4 changes: 2 additions & 2 deletions frontend/dockerfile/cmd/dockerfile-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# syntax = docker/dockerfile:1.1-experimental
# syntax=docker/dockerfile:1.1-experimental

FROM --platform=$BUILDPLATFORM tonistiigi/xx:golang@sha256:6f7d999551dd471b58f70716754290495690efa8421e0a1fcf18eb11d0c0a537 AS xgo

FROM --platform=$BUILDPLATFORM golang:1.13-buster AS base
FROM --platform=$BUILDPLATFORM golang:1.18-bullseye AS base
COPY --from=xgo / /
WORKDIR /src
ENV GOFLAGS=-mod=vendor
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/dockerfile2llb/convert_norunnetwork.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !dfrunnetwork
// +build !dfrunnetwork

package dockerfile2llb
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !dfrunsecurity
// +build !dfrunsecurity

package dockerfile2llb
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/dockerfile2llb/convert_runnetwork.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunnetwork
// +build dfrunnetwork

package dockerfile2llb
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/dockerfile2llb/convert_runsecurity.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunsecurity
// +build dfrunsecurity

package dockerfile2llb
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/dockerfile_runnetwork_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunnetwork
// +build dfrunnetwork

package dockerfile
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/dockerfile_runsecurity_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunsecurity
// +build dfrunsecurity

package dockerfile
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/instructions/commands_runnetwork.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunnetwork
// +build dfrunnetwork

package instructions
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/instructions/commands_runsecurity.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build dfrunsecurity
// +build dfrunsecurity

package instructions
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/instructions/errors_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package instructions
Expand Down
2 changes: 1 addition & 1 deletion frontend/dockerfile/instructions/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ func errExactlyOneArgument(command string) error {
}

func errNoDestinationArgument(command string) error {
return errors.Errorf("%s requires at least two arguments, but only one was provided. Destination could not be determined.", command)
return errors.Errorf("%s requires at least two arguments, but only one was provided. Destination could not be determined", command)
}

func errBlankCommandNames(command string) error {
Expand Down
1 change: 1 addition & 0 deletions frontend/dockerfile/shell/equal_env_unix.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !windows
// +build !windows

package shell
Expand Down
2 changes: 1 addition & 1 deletion frontend/gateway/pb/caps.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package moby_buildkit_v1_frontend //nolint:golint
package moby_buildkit_v1_frontend //nolint:revive

import "github.com/moby/buildkit/util/apicaps"

Expand Down
2 changes: 1 addition & 1 deletion frontend/gateway/pb/generate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package moby_buildkit_v1_frontend //nolint:golint
package moby_buildkit_v1_frontend //nolint:revive

//go:generate protoc -I=. -I=../../../vendor/ -I=../../../../../../ --gogo_out=plugins=grpc:. gateway.proto
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require (
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
golang.org/x/net v0.0.0-20200707034311-ab3426394381
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/sys v0.0.0-20201013081832-0aaa2718063a
golang.org/x/sys v0.0.0-20210507161434-a76c4d0a0096
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
// genproto: the actual version is replaced in replace()
google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1095,8 +1095,8 @@ golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200917073148-efd3b9a0ff20/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201013081832-0aaa2718063a h1:bhXnJ7fn2SiL+C8iOWPfNBJKDTjUByftpPW7b9CX94U=
golang.org/x/sys v0.0.0-20201013081832-0aaa2718063a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210507161434-a76c4d0a0096 h1:5PbJGn5Sp3GEUjJ61aYbUP6RIo3Z3r2E4Tv9y2z8UHo=
golang.org/x/sys v0.0.0-20210507161434-a76c4d0a0096/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221 h1:/ZHdbVpdR/jk3g30/d4yUL0JU9kksj8+F/bnQUVLGDM=
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
Expand Down

0 comments on commit 4c987d0

Please sign in to comment.