@@ -54,7 +54,7 @@ var _ = Describe("trdl flow test", Label("e2e", "trdl", "flow"), func() {
54
54
ProjectName : testOpts .projectName ,
55
55
RepoURL : "/test_dir" ,
56
56
TrdlChannelsBranch : testOpts .branchName ,
57
- RequiredNumberOfVerifiedSignaturesOnCommit : 0 ,
57
+ RequiredNumberOfVerifiedSignaturesOnCommit : 3 ,
58
58
S3Endpoint : "http://minio:9000" ,
59
59
S3Region : "ru-central1" ,
60
60
S3AccessKeyID : "minioadmin" ,
@@ -82,15 +82,15 @@ var _ = Describe("trdl flow test", Label("e2e", "trdl", "flow"), func() {
82
82
}
83
83
By ("[server] Publishing channels ..." )
84
84
{
85
- commit : = gitAddTrdlChannelsConfiguration (
85
+ _ = gitAddTrdlChannelsConfiguration (
86
86
SuiteData .TestDir ,
87
87
testOpts .pgpKeys ["developer" ],
88
88
TrdlChannelsConfiguration {
89
89
Group : testOpts .group ,
90
90
Channel : testOpts .channel ,
91
91
Version : testOpts .version1 ,
92
92
})
93
- quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], commit )
93
+ quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], testOpts . branchName )
94
94
serverPublish (testOpts .projectName )
95
95
}
96
96
By ("[client] Using channel release ..." )
@@ -113,21 +113,21 @@ var _ = Describe("trdl flow test", Label("e2e", "trdl", "flow"), func() {
113
113
gitTag (SuiteData .TestDir , currentTag , testOpts .pgpKeys ["developer" ])
114
114
115
115
By (fmt .Sprintf ("[server] Signing tag %q" , currentTag ))
116
- quorumSignTag (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], testOpts . tag2 )
116
+ quorumSignTag (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], currentTag )
117
117
118
118
By (fmt .Sprintf ("[server] Releasing tag %q" , currentTag ))
119
119
serverRelease (testOpts .projectName , currentTag )
120
120
121
121
By ("[server] Publishing channels ..." )
122
- commit : = gitAddTrdlChannelsConfiguration (
122
+ _ = gitAddTrdlChannelsConfiguration (
123
123
SuiteData .TestDir ,
124
124
testOpts .pgpKeys ["developer" ],
125
125
TrdlChannelsConfiguration {
126
126
Group : testOpts .group ,
127
127
Channel : testOpts .channel ,
128
128
Version : curentVersion ,
129
129
})
130
- quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], commit )
130
+ quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], testOpts . branchName )
131
131
serverPublish (testOpts .projectName )
132
132
}
133
133
@@ -177,21 +177,21 @@ var _ = Describe("trdl flow test", Label("e2e", "trdl", "flow"), func() {
177
177
gitTag (SuiteData .TestDir , currentTag , testOpts .pgpKeys ["developer" ])
178
178
179
179
By (fmt .Sprintf ("[server] Signing tag %q" , currentTag ))
180
- quorumSignTag (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], testOpts . tag2 )
180
+ quorumSignTag (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], currentTag )
181
181
182
182
By (fmt .Sprintf ("[server] Releasing tag %q" , currentTag ))
183
183
serverRelease (testOpts .projectName , currentTag )
184
184
185
185
By ("[server] Publishing channels ..." )
186
- commit : = gitAddTrdlChannelsConfiguration (
186
+ _ = gitAddTrdlChannelsConfiguration (
187
187
SuiteData .TestDir ,
188
188
testOpts .pgpKeys ["developer" ],
189
189
TrdlChannelsConfiguration {
190
190
Group : testOpts .group ,
191
191
Channel : testOpts .channel ,
192
192
Version : curentVersion ,
193
193
})
194
- quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], commit )
194
+ quorumSignCommit (SuiteData .TestDir , testOpts .pgpKeys ["tl" ], testOpts .pgpKeys ["pm" ], testOpts . branchName )
195
195
serverPublish (testOpts .projectName )
196
196
}
197
197
0 commit comments