Skip to content

Commit

Permalink
Merge pull request #22 from spiffe/dirt-build4
Browse files Browse the repository at this point in the history
more build updates
  • Loading branch information
drrt committed Jul 28, 2017
2 parents 9ff73bc + 178683b commit 29f0c94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
key: v1-{{ checksum "build_setup.sh" }}{{ checksum "glide.lock" }}
- run: ./build.sh setup
- run: ./build.sh deps
- run: ./build.sh protobuf
- run: ./build.sh binaries
- run: ./build.sh test
- store_test_results:
Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ case $1 in
setup) build_setup ;;
deps) build_deps ;;
protobuf) build_protobuf ;;
binaries) build_binaries ;;
binaries|bin) build_binaries ;;
test) build_test ;;
clean) build_clean ;;
distclean) build_clean; build_distclean ;;
all) build_deps; build_protobuf; build_binaries ;;
all) build_deps; build_binaries ;;
esac

0 comments on commit 29f0c94

Please sign in to comment.