diff --git a/circle.yml b/circle.yml index 88ff085..28ebdd6 100644 --- a/circle.yml +++ b/circle.yml @@ -39,6 +39,8 @@ jobs: name: Run Docker containers with coverage command: | mkdir -p /coverage + + echo "#################################################### BASE" docker run -e "CI=true" \ -e "COVERALLS_TOKEN" \ -e "CIRCLE_BUILD_NUM" \ @@ -47,6 +49,7 @@ jobs: analogj/capsulecd-build:base \ goveralls -ignore="cmd,vendor" -v -flags="-tags='static'" -service=circle-ci -repotoken=$COVERALLS_TOKEN + echo "#################################################### CHEF" docker run -e "CI=true" \ -e "COVERALLS_TOKEN" \ -e "CIRCLE_BUILD_NUM" \ diff --git a/pkg/engine/engine_chef.go b/pkg/engine/engine_chef.go index 45e2d93..421c470 100644 --- a/pkg/engine/engine_chef.go +++ b/pkg/engine/engine_chef.go @@ -53,6 +53,7 @@ func (g *engineChef) ValidateTools() error { return errors.EngineValidateToolError("berkshelf binary is missing") } + //TODO: figure out how to validate that "bundle audit" command exists. if _, berr := exec.LookPath("bundle"); berr != nil { return errors.EngineValidateToolError("bundler binary is missing") }