Skip to content

Commit 07d182f

Browse files
tmp_more_verbose_logs
1 parent f3e4fde commit 07d182f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packer_test/common/plugin.go

+15
Original file line numberDiff line numberDiff line change
@@ -99,19 +99,28 @@ func UseDependency(remoteModule, ref string) BuildCustomisation {
9999

100100
cmd = exec.Command("go", "mod", "tidy")
101101
cmd.Dir = path
102+
103+
modErr := &strings.Builder{}
104+
cmd.Stderr = modErr
105+
102106
err = cmd.Run()
103107
if err != nil {
104108
return fmt.Errorf("failed to run go mod tidy: %s", err), nil
105109
}
106110

111+
log.Printf("running go mod tidy before compilation; stderr: %s", modErr.String())
112+
107113
return nil, func() {
108114
err = os.WriteFile(modPath, oldGoMod, stat.Mode())
109115
if err != nil {
110116
fmt.Fprintf(os.Stderr, "failed to reset modfile %q: %s; manual cleanup may be needed", modPath, err)
111117
}
112118
cmd := exec.Command("go", "mod", "tidy")
113119
cmd.Dir = path
120+
modErr := &strings.Builder{}
121+
cmd.Stderr = modErr
114122
_ = cmd.Run()
123+
log.Printf("running go mod tidy after compilation; stderr: %s", modErr.String())
115124
}
116125
}
117126
}
@@ -250,22 +259,28 @@ func compilePlugin(ts *PackerTestSuite, versionString string, customisations ...
250259
return fmt.Errorf("failed to compile plugin binary: %s", err)
251260
}
252261

262+
log.Printf("setting up compilation context for version %q", versionString)
253263
testerPluginDir := filepath.Join(testDir, "plugin_tester")
254264
for _, custom := range customisations {
265+
log.Printf("applying one customisation")
255266
err, cleanup := custom(testerPluginDir)
256267
if err != nil {
268+
log.Printf("applying customisation failed")
257269
return fmt.Errorf("failed to prepare plugin workdir: %s", err)
258270
}
259271
defer cleanup()
260272
}
273+
log.Printf("done setting up compilation context for version %q", versionString)
261274

262275
outBin := filepath.Join(ts.pluginsDirectory, BinaryName(v))
263276

277+
log.Printf("compiling version %q", versionString)
264278
compileCommand := exec.Command("go", "build", "-C", testerPluginDir, "-o", outBin, "-ldflags", LDFlags(v), ".")
265279
logs, err := compileCommand.CombinedOutput()
266280
if err != nil {
267281
return fmt.Errorf("failed to compile plugin binary: %s\ncompiler logs: %s", err, logs)
268282
}
283+
log.Printf("done compiling version %q to path %q", versionString, outBin)
269284

270285
ts.compiledPlugins.Store(v.String(), outBin)
271286
return nil

0 commit comments

Comments
 (0)