This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.go
62 lines (48 loc) · 1.47 KB
/
build.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package depensure
import (
"fmt"
"os"
"time"
"github.com/paketo-buildpacks/packit/v2"
"github.com/paketo-buildpacks/packit/v2/chronos"
"github.com/paketo-buildpacks/packit/v2/scribe"
)
//go:generate faux --interface BuildProcess --output fakes/build_process.go
type BuildProcess interface {
Execute(workspace, goPath, gocachedir string) (err error)
}
func Build(
buildProcess BuildProcess,
logger scribe.Emitter,
clock chronos.Clock,
) packit.BuildFunc {
return func(context packit.BuildContext) (packit.BuildResult, error) {
logger.Title("%s %s", context.BuildpackInfo.Name, context.BuildpackInfo.Version)
logger.Break()
logger.Process("Executing build process")
depcachedirLayer, err := context.Layers.Get("depcachedir")
if err != nil {
return packit.BuildResult{}, err
}
depcachedirLayer.Cache = true
gopath, err := os.MkdirTemp("", "gopath")
if err != nil {
return packit.BuildResult{}, fmt.Errorf("failed to create GOPATH directory: %w", err)
}
duration, err := clock.Measure(func() error {
return buildProcess.Execute(context.WorkingDir, gopath, depcachedirLayer.Path)
})
if err != nil {
return packit.BuildResult{}, err
}
err = os.RemoveAll(gopath)
if err != nil {
return packit.BuildResult{}, fmt.Errorf("failed to delete GOPATH directory: %w", err)
}
logger.Action("Completed in %s", duration.Round(time.Millisecond))
logger.Break()
return packit.BuildResult{
Layers: []packit.Layer{depcachedirLayer},
}, nil
}
}