cmd/cloudshell_open/jib.go (47 lines of code) (raw):
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"strings"
)
func jibMavenBuild(dir string, image string) error {
cmd := createMavenCommand(dir, "--batch-mode", "-Dmaven.test.skip=true",
"package", "jib:build", "-Dimage="+image, "-Djib.to.auth.credHelper=gcloud")
if b, err := cmd.CombinedOutput(); err != nil {
return fmt.Errorf("Jib Maven build failed: %v, output:\n%s", err, string(b))
}
return nil
}
func jibMavenConfigured(dir string) (bool, error) {
content, err := ioutil.ReadFile(filepath.Join(dir, "pom.xml"))
if err != nil {
if os.IsNotExist(err) {
return false, nil
}
return false, fmt.Errorf("failed to check for pom.xml in the repo: %v", err)
}
if strings.Contains(string(content), "<artifactId>jib-maven-plugin</artifactId>") {
cmd := createMavenCommand(dir, "--batch-mode",
"jib:_skaffold-fail-if-jib-out-of-date", "-Djib.requiredVersion=1.4.0")
if _, err := cmd.CombinedOutput(); err == nil {
return true, nil
}
}
return false, nil
}
func createMavenCommand(dir string, args ...string) *exec.Cmd {
executable := "mvn"
if stat, err := os.Stat(filepath.Join(dir, "mvnw")); err == nil {
if (stat.Mode() & 0111) != 0 {
if wrapper, err := filepath.Abs(filepath.Join(dir, "mvnw")); err == nil {
executable = wrapper
}
}
}
cmd := exec.Command(executable, args...)
cmd.Dir = dir
return cmd
}