Skip to content

Commit

Permalink
Merge pull request #2938 from caseydavenport/casey-fix-release
Browse files Browse the repository at this point in the history
Fix release target
  • Loading branch information
marvin-tigera authored Jul 29, 2021
2 parents 366ba95 + 04531d9 commit 29a8666
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ release-tag: release-prereqs release-notes
@echo ""

## Produces a clean build of release artifacts at the specified version.
release-build: release-prereqs clean
release-build: release-prereqs clean $(GENERATED_FILES)
# Check that the correct code is checked out.
ifneq ($(VERSION), $(GIT_VERSION))
$(error Attempt to build $(VERSION) from $(GIT_VERSION))
Expand Down
3 changes: 2 additions & 1 deletion bpf/xdp/attach.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ import (
"strconv"
"strings"

"github.com/projectcalico/felix/bpf"
log "github.com/sirupsen/logrus"

"github.com/projectcalico/felix/bpf"
)

type AttachPoint struct {
Expand Down
7 changes: 4 additions & 3 deletions calc/resources_for_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ package calc_test
// the model package.

import (
v1 "k8s.io/api/core/v1"
discovery "k8s.io/api/discovery/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/projectcalico/api/pkg/lib/numorstring"
"github.com/projectcalico/libcalico-go/lib/backend/encap"
"github.com/projectcalico/libcalico-go/lib/backend/model"
. "github.com/projectcalico/libcalico-go/lib/backend/model"
"github.com/projectcalico/libcalico-go/lib/net"
v1 "k8s.io/api/core/v1"
discovery "k8s.io/api/discovery/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

// Canned hostnames.
Expand Down
7 changes: 4 additions & 3 deletions fv/service_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

v1 "k8s.io/api/core/v1"
discovery "k8s.io/api/discovery/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

api "github.com/projectcalico/api/pkg/apis/projectcalico/v3"
"github.com/projectcalico/libcalico-go/lib/apiconfig"
client "github.com/projectcalico/libcalico-go/lib/clientv3"
"github.com/projectcalico/libcalico-go/lib/ipam"
"github.com/projectcalico/libcalico-go/lib/net"
"github.com/projectcalico/libcalico-go/lib/options"
v1 "k8s.io/api/core/v1"
discovery "k8s.io/api/discovery/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/projectcalico/felix/fv/connectivity"
"github.com/projectcalico/felix/fv/infrastructure"
Expand Down
5 changes: 3 additions & 2 deletions serviceindex/serviceindex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@
package serviceindex_test

import (
"github.com/projectcalico/felix/labelindex"
. "github.com/projectcalico/felix/serviceindex"
v1 "k8s.io/api/core/v1"
discovery "k8s.io/api/discovery/v1beta1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/projectcalico/felix/labelindex"
. "github.com/projectcalico/felix/serviceindex"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"

Expand Down

0 comments on commit 29a8666

Please sign in to comment.