CI: Split `/bin/build artifacts *` subcommand (#66005)
* Split go files
* Modify publishartifacts.go
* Split main
* FIXME: Temp add GCSCopy to gcloud/storage
* Fix lint
* Exported flags
* Update starlark - make drone
* Further backend lint fixes
* Add fallback_test.go
* Fix go imports order
* make drone
* Remove GCSCopy from static assets
* Remove GCSCopy from storybook
* Fix lint
* Remove GCSCopy
* Remove success logline
* drone yaml cleanup
* Add artifacts-editions flag
* Fix starlark
* Add default sting slice in artifacts packages command
(cherry picked from commit 24d348f804)
# Conflicts:
# .drone.yml
73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
package main
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
var (
|
|
jobsFlag = cli.IntFlag{
|
|
Name: "jobs",
|
|
Usage: "Number of parallel jobs",
|
|
}
|
|
buildIDFlag = cli.StringFlag{
|
|
Name: "build-id",
|
|
Usage: "Optionally supply a build ID to be part of the version",
|
|
}
|
|
editionFlag = cli.StringFlag{
|
|
Name: "edition",
|
|
Usage: "The edition of Grafana to build (oss or enterprise)",
|
|
Value: "oss",
|
|
}
|
|
variantsFlag = cli.StringFlag{
|
|
Name: "variants",
|
|
Usage: "Comma-separated list of variants to build",
|
|
}
|
|
triesFlag = cli.IntFlag{
|
|
Name: "tries",
|
|
Usage: "Specify number of tries before failing",
|
|
Value: 1,
|
|
}
|
|
noInstallDepsFlag = cli.BoolFlag{
|
|
Name: "no-install-deps",
|
|
Usage: "Don't install dependencies",
|
|
}
|
|
signingAdminFlag = cli.BoolFlag{
|
|
Name: "signing-admin",
|
|
Usage: "Use manifest signing admin API endpoint?",
|
|
}
|
|
signFlag = cli.BoolFlag{
|
|
Name: "sign",
|
|
Usage: "Enable plug-in signing (you must set GRAFANA_API_KEY)",
|
|
}
|
|
dryRunFlag = cli.BoolFlag{
|
|
Name: "dry-run",
|
|
Usage: "Only simulate actions",
|
|
}
|
|
gitHubTokenFlag = cli.StringFlag{
|
|
Name: "github-token",
|
|
Value: "",
|
|
EnvVars: []string{"GITHUB_TOKEN"},
|
|
Usage: "GitHub token",
|
|
}
|
|
tagFlag = cli.StringFlag{
|
|
Name: "tag",
|
|
Usage: "Grafana version tag",
|
|
}
|
|
securityFlag = cli.BoolFlag{
|
|
Name: "security",
|
|
Usage: "Security release",
|
|
}
|
|
srcFlag = cli.StringFlag{
|
|
Name: "src-bucket",
|
|
Value: "grafana-prerelease",
|
|
Usage: "Google Cloud Storage bucket",
|
|
}
|
|
securityDestBucketFlag = cli.StringFlag{
|
|
Name: "security-dest-bucket",
|
|
Usage: "Google Cloud Storage bucket for security packages (or $SECURITY_DEST_BUCKET)",
|
|
}
|
|
destFlag = cli.StringFlag{
|
|
Name: "dest-bucket",
|
|
Value: "grafana-downloads",
|
|
Usage: "Google Cloud Storage bucket for published packages",
|
|
}
|
|
)
|