Skip to content

Commit

Permalink
Update Bazel to v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hakman committed Mar 13, 2021
1 parent ad7c793 commit 46001d2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.1
3.5.0
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ git_repository(

http_archive(
name = "bazel_toolchains",
sha256 = "7ebb200ed3ca3d1f7505659c7dfed01c4b5cb04c3a6f34140726fe22f5d35e86",
strip_prefix = "bazel-toolchains-3.4.1",
sha256 = "89a053218639b1c5e3589a859bb310e0a402dedbe4ee369560e66026ae5ef1f2",
strip_prefix = "bazel-toolchains-3.5.0",
urls = [
"https://github.com/bazelbuild/bazel-toolchains/releases/download/3.4.1/bazel-toolchains-3.4.1.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/3.4.1/bazel-toolchains-3.4.1.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/releases/download/3.5.0/bazel-toolchains-3.5.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/3.5.0/bazel-toolchains-3.5.0.tar.gz",
],
)

Expand Down
14 changes: 11 additions & 3 deletions tests/e2e/e2e.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH)

.PHONY: bazelisk-install
bazelisk-install:
cd $(KOPS_ROOT)/tests/e2e && \
go get github.com/bazelbuild/bazelisk

.PHONY: test-e2e-install
test-e2e-install:
cd $(KOPS_ROOT)/tests/e2e && \
Expand All @@ -23,10 +28,13 @@ test-e2e-install:
go install ./kubetest2-kops

.PHONY: test-e2e-aws-simple-1-20
test-e2e-aws-simple-1-20: test-e2e-install
kubetest2 kops \
test-e2e-aws-simple-1-20: bazelisk-install test-e2e-install
pwd
env
go env
$(GOPATH)/bin/kubetest2 kops \
-v 2 \
--build --up --down \
--up --down \
--cloud-provider=aws \
--kops-version-marker=https://storage.googleapis.com/kops-ci/bin/latest-ci-updown-green.txt \
--kubernetes-version=https://storage.googleapis.com/kubernetes-release/release/stable-1.20.txt \
Expand Down

0 comments on commit 46001d2

Please sign in to comment.