Skip to content

Commit 98711a7

Browse files
committed
Bump to go 1.13
* Update default version of hwc [#169957279]
1 parent 016bfa0 commit 98711a7

File tree

95 files changed

+2097
-8958
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+2097
-8958
lines changed

Diff for: go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ require (
66
github.com/golang/mock v1.3.1
77
github.com/onsi/ginkgo v1.10.3
88
github.com/onsi/gomega v1.7.0
9+
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e // indirect
910
)
11+
12+
go 1.13

Diff for: go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5h
6666
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
6767
golang.org/x/sys v0.0.0-20191010194322-b09406accb47 h1:/XfQ9z7ib8eEJX2hdgFTZJ/ntt0swNk5oYBziWeTCvY=
6868
golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
69+
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e h1:N7DeIrjYszNmSW409R3frPPwglRwMkXSBzwVbkOjLLA=
70+
golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
6971
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
7072
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
7173
golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=

Diff for: manifest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
language: hwc
33
default_versions:
44
- name: hwc
5-
version: 17.0.0
5+
version: 18.0.0
66
dependencies:
77
- name: hwc
88
version: 18.0.0

Diff for: src/hwc/brats/brats_suite_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ import (
1515
. "github.com/onsi/gomega"
1616
)
1717

18+
var _ = func() bool {
19+
testing.Init()
20+
return true
21+
}()
22+
1823
func init() {
1924
flag.StringVar(&cutlass.DefaultMemory, "memory", "1GB", "default memory for pushed apps")
2025
flag.StringVar(&cutlass.DefaultDisk, "disk", "1GB", "default disk for pushed apps")

Diff for: src/hwc/integration/integration_suite_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ var bpDir string
2323
var buildpackVersion string
2424
var packagedBuildpack cutlass.VersionedBuildpackPackage
2525

26+
var _ = func() bool {
27+
testing.Init()
28+
return true
29+
}()
30+
2631
func init() {
2732
flag.StringVar(&buildpackVersion, "version", "", "version to use (builds if empty)")
2833
flag.BoolVar(&cutlass.Cached, "cached", true, "cached buildpack")

0 commit comments

Comments
 (0)