@@ -1770,7 +1770,7 @@ func init() {
1770
1770
})
1771
1771
addBuilder (BuildConfig {
1772
1772
Name : "linux-amd64-nounified" ,
1773
- HostType : "host-linux-amd64-buster " ,
1773
+ HostType : "host-linux-amd64-bullseye " ,
1774
1774
Notes : "builder with GOEXPERIMENT=nounified, see go.dev/issue/51397 and go.dev/issue/57977" ,
1775
1775
tryBot : func (repo , branch , goBranch string ) bool {
1776
1776
return (repo == "go" || repo == "tools" ) && goBranch == "release-branch.go1.20"
@@ -1785,6 +1785,24 @@ func init() {
1785
1785
numTestHelpers : 1 ,
1786
1786
numTryTestHelpers : 4 ,
1787
1787
})
1788
+ addBuilder (BuildConfig {
1789
+ Name : "linux-amd64-newinliner" ,
1790
+ HostType : "host-linux-amd64-bullseye" ,
1791
+ Notes : "builder with GOEXPERIMENT=newinliner, see go.dev/issue/61883" ,
1792
+ tryBot : func (repo , branch , goBranch string ) bool {
1793
+ return repo == "go" && goBranch == "master"
1794
+ },
1795
+ buildsRepo : func (repo , branch , goBranch string ) bool {
1796
+ return repo == "go" && goBranch == "master"
1797
+ },
1798
+ env : []string {
1799
+ "GO_DISABLE_OUTBOUND_NETWORK=1" ,
1800
+ "GOEXPERIMENT=newinliner" ,
1801
+ },
1802
+ GoDeps : []string {
1803
+ "fbf9076ee8c8f665f1e8bba08fdc473cc7a2d690" , // CL 511555, which added GOEXPERIMENT=newinliner
1804
+ },
1805
+ })
1788
1806
addBuilder (BuildConfig {
1789
1807
Name : "linux-amd64-goamd64v3" ,
1790
1808
HostType : "host-linux-amd64-bullseye" ,
0 commit comments