@@ -99,19 +99,28 @@ func UseDependency(remoteModule, ref string) BuildCustomisation {
99
99
100
100
cmd = exec .Command ("go" , "mod" , "tidy" )
101
101
cmd .Dir = path
102
+
103
+ modErr := & strings.Builder {}
104
+ cmd .Stderr = modErr
105
+
102
106
err = cmd .Run ()
103
107
if err != nil {
104
108
return fmt .Errorf ("failed to run go mod tidy: %s" , err ), nil
105
109
}
106
110
111
+ log .Printf ("running go mod tidy before compilation; stderr: %s" , modErr .String ())
112
+
107
113
return nil , func () {
108
114
err = os .WriteFile (modPath , oldGoMod , stat .Mode ())
109
115
if err != nil {
110
116
fmt .Fprintf (os .Stderr , "failed to reset modfile %q: %s; manual cleanup may be needed" , modPath , err )
111
117
}
112
118
cmd := exec .Command ("go" , "mod" , "tidy" )
113
119
cmd .Dir = path
120
+ modErr := & strings.Builder {}
121
+ cmd .Stderr = modErr
114
122
_ = cmd .Run ()
123
+ log .Printf ("running go mod tidy after compilation; stderr: %s" , modErr .String ())
115
124
}
116
125
}
117
126
}
@@ -250,22 +259,28 @@ func compilePlugin(ts *PackerTestSuite, versionString string, customisations ...
250
259
return fmt .Errorf ("failed to compile plugin binary: %s" , err )
251
260
}
252
261
262
+ log .Printf ("setting up compilation context for version %q" , versionString )
253
263
testerPluginDir := filepath .Join (testDir , "plugin_tester" )
254
264
for _ , custom := range customisations {
265
+ log .Printf ("applying one customisation" )
255
266
err , cleanup := custom (testerPluginDir )
256
267
if err != nil {
268
+ log .Printf ("applying customisation failed" )
257
269
return fmt .Errorf ("failed to prepare plugin workdir: %s" , err )
258
270
}
259
271
defer cleanup ()
260
272
}
273
+ log .Printf ("done setting up compilation context for version %q" , versionString )
261
274
262
275
outBin := filepath .Join (ts .pluginsDirectory , BinaryName (v ))
263
276
277
+ log .Printf ("compiling version %q" , versionString )
264
278
compileCommand := exec .Command ("go" , "build" , "-C" , testerPluginDir , "-o" , outBin , "-ldflags" , LDFlags (v ), "." )
265
279
logs , err := compileCommand .CombinedOutput ()
266
280
if err != nil {
267
281
return fmt .Errorf ("failed to compile plugin binary: %s\n compiler logs: %s" , err , logs )
268
282
}
283
+ log .Printf ("done compiling version %q to path %q" , versionString , outBin )
269
284
270
285
ts .compiledPlugins .Store (v .String (), outBin )
271
286
return nil
0 commit comments