forked from wagoodman/bashful
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (21 loc) · 751 Bytes
/
Copy pathMakefile
File metadata and controls
25 lines (21 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.DEFAULT_GOAL := ci
TARGETS := $(shell ls scripts)
.PHONY: run clean $(TARGETS)
$(TARGETS):
./scripts/$@
run: #clean build
./bin/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-repetative.yml
./bin/bashful run example/04-repetative-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
clean:
rm -f bin/bashful build.log