chore: review publisher and ci config.
This commit is contained in:
parent
21826f6b12
commit
e5c0081c44
@ -36,9 +36,6 @@
|
|||||||
max-per-linter = 0
|
max-per-linter = 0
|
||||||
max-same-issues = 0
|
max-same-issues = 0
|
||||||
exclude = []
|
exclude = []
|
||||||
[[issues.exclude-rules]]
|
|
||||||
path = "version.go"
|
|
||||||
text = "`(version|commit|date)` is a global variable"
|
|
||||||
[[issues.exclude-rules]]
|
[[issues.exclude-rules]]
|
||||||
path = "cmd/"
|
path = "cmd/"
|
||||||
linters = ["gochecknoglobals", "gochecknoinits"]
|
linters = ["gochecknoglobals", "gochecknoinits"]
|
||||||
|
|||||||
@ -19,14 +19,12 @@ notifications:
|
|||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
# Install linters and misspell
|
# Install linters and misspell
|
||||||
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.15.0
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.16.0
|
||||||
- golangci-lint --version
|
- golangci-lint --version
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- echo "TRAVIS_GO_VERSION=$TRAVIS_GO_VERSION"
|
- echo "TRAVIS_GO_VERSION=$TRAVIS_GO_VERSION"
|
||||||
- go mod download
|
- go mod download
|
||||||
- echo "TRAVIS_GO_VERSION=$TRAVIS_GO_VERSION"
|
|
||||||
- go mod download
|
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- >
|
- >
|
||||||
|
|||||||
@ -13,13 +13,15 @@ import (
|
|||||||
"github.com/docker/distribution/manifest/manifestlist"
|
"github.com/docker/distribution/manifest/manifestlist"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const envDockerExperimental = "DOCKER_CLI_EXPERIMENTAL=enabled"
|
||||||
|
|
||||||
// Publisher Publish multi-arch image.
|
// Publisher Publish multi-arch image.
|
||||||
type Publisher struct {
|
type Publisher struct {
|
||||||
Builds [][]string
|
Builds []*exec.Cmd
|
||||||
Push [][]string
|
Push []*exec.Cmd
|
||||||
ManifestAnnotate [][]string
|
ManifestAnnotate []*exec.Cmd
|
||||||
ManifestCreate []string
|
ManifestCreate *exec.Cmd
|
||||||
ManifestPush []string
|
ManifestPush *exec.Cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
func newPublisher(imageName, version, baseImageName string, targets []string) (Publisher, error) {
|
func newPublisher(imageName, version, baseImageName string, targets []string) (Publisher, error) {
|
||||||
@ -36,28 +38,31 @@ func newPublisher(imageName, version, baseImageName string, targets []string) (P
|
|||||||
publisher := Publisher{}
|
publisher := Publisher{}
|
||||||
|
|
||||||
for _, target := range targets {
|
for _, target := range targets {
|
||||||
option := buildOptions[target]
|
option, ok := buildOptions[target]
|
||||||
|
if !ok {
|
||||||
|
return Publisher{}, fmt.Errorf("unsupported platform: %s", target)
|
||||||
|
}
|
||||||
|
|
||||||
descriptor, err := findManifestDescriptor(option, manifest.Manifests)
|
descriptor, err := findManifestDescriptor(option, manifest.Manifests)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return Publisher{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
dockerfile := fmt.Sprintf("%s-%s-%s.Dockerfile", option.OS, option.GoARCH, option.GoARM)
|
dockerfile := fmt.Sprintf("%s-%s-%s.Dockerfile", option.OS, option.GoARCH, option.GoARM)
|
||||||
|
|
||||||
publisher.Builds = append(publisher.Builds, []string{
|
|
||||||
"build",
|
|
||||||
"-t", fmt.Sprintf("%s:%s-%s", imageName, version, target),
|
|
||||||
"-f", dockerfile,
|
|
||||||
".",
|
|
||||||
})
|
|
||||||
|
|
||||||
err = createDockerfile(dockerfile, option, descriptor, baseImageName)
|
err = createDockerfile(dockerfile, option, descriptor, baseImageName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
return Publisher{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
publisher.Push = append(publisher.Push, []string{"push", fmt.Sprintf(`%s:%s-%s`, imageName, version, target)})
|
dBuild := exec.Command("docker", "build",
|
||||||
|
"-t", fmt.Sprintf("%s:%s-%s", imageName, version, target),
|
||||||
|
"-f", dockerfile,
|
||||||
|
".")
|
||||||
|
publisher.Builds = append(publisher.Builds, dBuild)
|
||||||
|
|
||||||
|
dPush := exec.Command("docker", "push", fmt.Sprintf(`%s:%s-%s`, imageName, version, target))
|
||||||
|
publisher.Push = append(publisher.Push, dPush)
|
||||||
|
|
||||||
ma := []string{
|
ma := []string{
|
||||||
"manifest", "annotate",
|
"manifest", "annotate",
|
||||||
@ -69,54 +74,82 @@ func newPublisher(imageName, version, baseImageName string, targets []string) (P
|
|||||||
if option.Variant != "" {
|
if option.Variant != "" {
|
||||||
ma = append(ma, fmt.Sprintf("--variant=%s", option.Variant))
|
ma = append(ma, fmt.Sprintf("--variant=%s", option.Variant))
|
||||||
}
|
}
|
||||||
publisher.ManifestAnnotate = append(publisher.ManifestAnnotate, ma)
|
|
||||||
|
cmdMA := exec.Command("docker", ma...)
|
||||||
|
cmdMA.Env = append(cmdMA.Env, envDockerExperimental)
|
||||||
|
publisher.ManifestAnnotate = append(publisher.ManifestAnnotate, cmdMA)
|
||||||
}
|
}
|
||||||
|
|
||||||
publisher.ManifestCreate = []string{
|
mc := []string{
|
||||||
"manifest", "create", "--amend", fmt.Sprintf("%s:%s", imageName, version),
|
"manifest", "create", "--amend", fmt.Sprintf("%s:%s", imageName, version),
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, target := range targets {
|
for _, target := range targets {
|
||||||
publisher.ManifestCreate = append(publisher.ManifestCreate, fmt.Sprintf("%s:%s-%s", imageName, version, target))
|
mc = append(mc, fmt.Sprintf("%s:%s-%s", imageName, version, target))
|
||||||
}
|
}
|
||||||
|
|
||||||
publisher.ManifestPush = []string{
|
cmdMC := exec.Command("docker", mc...)
|
||||||
"manifest", "push", fmt.Sprintf("%s:%s", imageName, version),
|
cmdMC.Env = append(cmdMC.Env, envDockerExperimental)
|
||||||
}
|
publisher.ManifestCreate = cmdMC
|
||||||
|
|
||||||
|
cmdMP := exec.Command("docker", "manifest", "push", fmt.Sprintf("%s:%s", imageName, version))
|
||||||
|
cmdMP.Env = append(cmdMP.Env, envDockerExperimental)
|
||||||
|
publisher.ManifestPush = cmdMP
|
||||||
|
|
||||||
return publisher, nil
|
return publisher, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b Publisher) execute(dryRun bool) error {
|
func (b Publisher) execute(dryRun bool) error {
|
||||||
for _, args := range b.Builds {
|
for _, cmd := range b.Builds {
|
||||||
if err := execDocker(args, dryRun); err != nil {
|
if err := execCmd(cmd, dryRun); err != nil {
|
||||||
return fmt.Errorf("failed to build: %v: %v", args, err)
|
return fmt.Errorf("failed to build: %v: %v", cmd, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, args := range b.Push {
|
for _, cmd := range b.Push {
|
||||||
if err := execDocker(args, dryRun); err != nil {
|
if err := execCmd(cmd, dryRun); err != nil {
|
||||||
return fmt.Errorf("failed to push: %v: %v", args, err)
|
return fmt.Errorf("failed to push: %v: %v", cmd, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := execDocker(b.ManifestCreate, dryRun); err != nil {
|
if err := execCmd(b.ManifestCreate, dryRun); err != nil {
|
||||||
return fmt.Errorf("failed to create manifest: %v: %v", b.ManifestCreate, err)
|
return fmt.Errorf("failed to create manifest: %v: %v", b.ManifestCreate, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, args := range b.ManifestAnnotate {
|
for _, cmd := range b.ManifestAnnotate {
|
||||||
if err := execDocker(args, dryRun); err != nil {
|
if err := execCmd(cmd, dryRun); err != nil {
|
||||||
return fmt.Errorf("failed to annotate manifest: %v: %v", args, err)
|
return fmt.Errorf("failed to annotate manifest: %v: %v", cmd, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := execDocker(b.ManifestPush, dryRun); err != nil {
|
if err := execCmd(b.ManifestPush, dryRun); err != nil {
|
||||||
return fmt.Errorf("failed to push manifest: %v: %v", b.ManifestPush, err)
|
return fmt.Errorf("failed to push manifest: %v: %v", b.ManifestPush, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func createDockerfile(dockerfile string, option buildOption, descriptor manifestlist.ManifestDescriptor, baseImageName string) error {
|
||||||
|
base := template.New("tmpl.Dockerfile")
|
||||||
|
parse, err := base.ParseFiles("./internal/tmpl.Dockerfile")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
data := map[string]interface{}{
|
||||||
|
"GoOS": option.OS,
|
||||||
|
"GoARCH": option.GoARCH,
|
||||||
|
"GoARM": option.GoARM,
|
||||||
|
"RuntimeImage": fmt.Sprintf("%s@%s", baseImageName, descriptor.Digest),
|
||||||
|
}
|
||||||
|
|
||||||
|
file, err := os.Create(dockerfile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return parse.Execute(file, data)
|
||||||
|
}
|
||||||
|
|
||||||
func getBuildOptions(source string) (map[string]buildOption, error) {
|
func getBuildOptions(source string) (map[string]buildOption, error) {
|
||||||
file, err := os.Open(source)
|
file, err := os.Open(source)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -133,28 +166,6 @@ func getBuildOptions(source string) (map[string]buildOption, error) {
|
|||||||
return buildOptions, nil
|
return buildOptions, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func createDockerfile(dockerfile string, buildOption buildOption, descriptor manifestlist.ManifestDescriptor, baseImageName string) error {
|
|
||||||
base := template.New("tmpl.Dockerfile")
|
|
||||||
parse, err := base.ParseFiles("./internal/tmpl.Dockerfile")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
data := map[string]interface{}{
|
|
||||||
"GoOS": buildOption.OS,
|
|
||||||
"GoARCH": buildOption.GoARCH,
|
|
||||||
"GoARM": buildOption.GoARM,
|
|
||||||
"RuntimeImage": fmt.Sprintf("%s@%s", baseImageName, descriptor.Digest),
|
|
||||||
}
|
|
||||||
|
|
||||||
file, err := os.Create(dockerfile)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return parse.Execute(file, data)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getManifest(baseImageName string) (*manifestlist.ManifestList, error) {
|
func getManifest(baseImageName string) (*manifestlist.ManifestList, error) {
|
||||||
manifestPath := "./manifest.json"
|
manifestPath := "./manifest.json"
|
||||||
|
|
||||||
@ -201,15 +212,12 @@ func findManifestDescriptor(criterion buildOption, descriptors []manifestlist.Ma
|
|||||||
return manifestlist.ManifestDescriptor{}, fmt.Errorf("not supported: %v", criterion)
|
return manifestlist.ManifestDescriptor{}, fmt.Errorf("not supported: %v", criterion)
|
||||||
}
|
}
|
||||||
|
|
||||||
func execDocker(args []string, dryRun bool) error {
|
func execCmd(cmd *exec.Cmd, dryRun bool) error {
|
||||||
if dryRun {
|
if dryRun {
|
||||||
fmt.Println("docker", strings.Join(args, " "))
|
fmt.Println(cmd.Path, strings.Join(cmd.Args, " "))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd := exec.Command("docker", args...)
|
|
||||||
cmd.Env = append(cmd.Env, "DOCKER_CLI_EXPERIMENTAL=enabled")
|
|
||||||
|
|
||||||
output, err := cmd.CombinedOutput()
|
output, err := cmd.CombinedOutput()
|
||||||
|
|
||||||
if len(output) != 0 {
|
if len(output) != 0 {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user