-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
24 lines (19 loc) · 913 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
test:
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input
cd ../sample && make setup && go build
cd .. && rm -r sample
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input use_secret=yes
cd ../sample && make setup && go build
cd .. && rm -r sample
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input use_gcs=yes
cd ../sample && make setup && go build
cd .. && rm -r sample
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input golang_mod_name=github.com/lol/lol type=msg
cd ../lol && make setup && go build
cd .. && rm -r lol
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input golang_mod_name=github.com/lol/lol type=msg
cd ../lol && make setup && go build
cd .. && rm -r lol
cd .. && cookiecutter ./cookiecutter-cloud-run-go --no-input golang_mod_name=github.com/lol/lol type=msg use_gcs=yes
cd ../lol && make setup && go build
cd .. && rm -r lol