Skip to content

Commit

Permalink
Condense some more steps in circle, this seems to speed things up.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwilkie committed Jan 16, 2016
1 parent e01f774 commit 7bd79be
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ dependencies:
cache_directories:
- "~/docker"
override:
- "sudo apt-get update && sudo apt-get install jq pv"
- curl https://sdk.cloud.google.com | bash
- test -z "$SECRET_PASSWORD" || bin/setup-circleci-secrets "$SECRET_PASSWORD"
- make deps
- "mkdir -p $(dirname $SRCDIR) && cp -r $(pwd)/ $SRCDIR"
- > sudo apt-get update &&
sudo apt-get install jq pv &&
(curl https://sdk.cloud.google.com | bash) &&
(test -z "$SECRET_PASSWORD" || bin/setup-circleci-secrets "$SECRET_PASSWORD") &&
make deps &&
mkdir -p $(dirname $SRCDIR) &&
cp -r $(pwd)/ $SRCDIR
- "cd $SRCDIR/client; ../tools/rebuild-image weaveworks/scope-ui-build . Dockerfile package.json webpack.production.config.js .eslintrc .babelrc && touch $SRCDIR/.scope_ui_build.uptodate"
- "cd $SRCDIR/backend; ../tools/rebuild-image weaveworks/scope-backend-build . Dockerfile build.sh && touch $SRCDIR/.scope_backend_build.uptodate"
- cd $SRCDIR/integration; ./gce.sh make_template:
Expand Down

0 comments on commit 7bd79be

Please sign in to comment.