-
Notifications
You must be signed in to change notification settings - Fork 9
/
cache.go
70 lines (55 loc) · 1.76 KB
/
cache.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
63
64
65
66
67
68
69
70
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package cmd
import (
"context"
"github.com/spf13/cobra"
"golang.org/x/exp/slices"
"namespacelabs.dev/foundation/internal/build/buildkit"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/compute/cache"
"namespacelabs.dev/foundation/internal/executor"
"namespacelabs.dev/foundation/internal/parsing/module"
"namespacelabs.dev/foundation/std/cfg"
)
func NewCacheCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "cache",
Short: "Cache related operations (e.g. prune).",
}
cmd.AddCommand(newPruneCmd())
return cmd
}
func newPruneCmd() *cobra.Command {
what := []string{"foundation", "buildkit"}
cmd := &cobra.Command{
Use: "prune",
Short: "Remove all foundation-managed caches.",
Args: cobra.NoArgs,
RunE: fncobra.RunE(func(ctx context.Context, args []string) error {
root, err := module.FindRoot(ctx, ".")
if err != nil {
return err
}
eg := executor.New(ctx, "fn.prune")
if slices.Contains(what, "foundation") {
eg.Go(func(ctx context.Context) error {
return cache.Prune(ctx)
})
}
if slices.Contains(what, "buildkit") {
eg.Go(func(ctx context.Context) error {
// XXX make platform configurable.
return buildkit.Prune(ctx, cfg.MakeConfigurationWith("prune", root.Workspace(), cfg.ConfigurationSlice{
PlatformConfiguration: root.DevHost().ConfigurePlatform,
}), nil)
})
}
// XXX remove go caches?
return eg.Wait()
}),
}
cmd.Flags().StringArrayVar(&what, "caches", what, "Which caches to prune. List of: foundation, buildkit.")
return cmd
}