Skip to content

Commit

Permalink
update makefile for running all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
wagoodman committed Feb 5, 2018
1 parent fc979e2 commit 54765cf
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,23 @@ $(TARGETS):
./scripts/$@

run: #clean build
./bin/bashful run example/11-tags.yml --tags some-app1
./dist/bashful run example/11-tags.yml --tags some-app1

examples:
./bin/bashful run example/00-demo.yml
./bin/bashful run example/01-simple.yml
./bin/bashful run example/02-simple-and-pretty.yml
./bin/bashful run example/03-repetitive.yml
./bin/bashful run example/04-repetitive-parallel.yml
./bin/bashful run example/05-minimal.yml
./bin/bashful run example/06-with-errors.yml
./bin/bashful run example/07-from-url.yml
./bin/bashful run example/08-complicated.yml
./bin/bashful run example/09-stress-and-flow-control.yml
./bin/bashful run example/10-bad-values.yml || true
./dist/bashful run example/00-demo.yml
./dist/bashful run example/01-simple.yml
./dist/bashful run example/02-simple-and-pretty.yml
./dist/bashful run example/03-repetitive.yml
./dist/bashful run example/04-repetitive-parallel.yml
./dist/bashful run example/05-minimal.yml
./dist/bashful run example/06-with-errors.yml || true
# ./dist/bashful run example/07-from-url.yml || true
./dist/bashful run example/08-complicated.yml || true
# ./dist/bashful run example/09-stress-and-flow-control.yml
./dist/bashful run example/10-bad-values.yml || true
./dist/bashful run example/11-tags.yml --tags some-app1
./dist/bashful run example/11-tags.yml --only-tags migrate
./dist/bashful run example/12-share-variables.yml

clean:
rm -f bin/bashful build.log
rm -f dist/bashful build.log

0 comments on commit 54765cf

Please sign in to comment.