Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
make sure its clear when chef tests start.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jul 22, 2017
1 parent 4713abb commit 273d617
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand All @@ -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" \
Expand Down
1 change: 1 addition & 0 deletions pkg/engine/engine_chef.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 273d617

Please sign in to comment.