forked from datastax/cass-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagefile.go
29 lines (24 loc) · 730 Bytes
/
magefile.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
// Copyright DataStax, Inc.
// Please see the included license file for details.
//+build mage
package main
import (
"github.com/magefile/mage/mg"
// mage:import jenkins
"github.com/datastax/cass-operator/mage/jenkins"
// mage:import operator
"github.com/datastax/cass-operator/mage/operator"
// mage:import kind
_ "github.com/datastax/cass-operator/mage/kind"
// mage:import integ
_ "github.com/datastax/cass-operator/mage/integ-tests"
// mage:import lint
_ "github.com/datastax/cass-operator/mage/linting"
// mage:import gcp
_ "github.com/datastax/cass-operator/mage/gcloud"
)
// Clean all build artifacts, does not clean up old docker images.
func Clean() {
mg.Deps(operator.Clean)
mg.Deps(jenkins.Clean)
}