File tree 3 files changed +15
-1
lines changed 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,16 @@ deploy:
97
97
paths :
98
98
- terraform/plan.json
99
99
100
+ import :
101
+ extends : .base_on_push
102
+ stage : deploy
103
+ timeout : 5m # probably needs to be extended
104
+ needs :
105
+ - build_image
106
+ - deploy
107
+ script :
108
+ - make import
109
+
100
110
deploy_browser :
101
111
extends : .base_on_push
102
112
stage : deploy
Original file line number Diff line number Diff line change @@ -102,12 +102,16 @@ $(1)terraform: lambdas
102
102
103
103
.PHONY: $(1 ) deploy
104
104
$(1 ) deploy: check_python $(1 ) terraform
105
- python $(project_root ) /scripts/post_deploy_tdr.py
106
105
endef
107
106
108
107
$(eval $(call deploy,))
109
108
$(eval $(call deploy,auto_))
110
109
110
+ .PHONY : import
111
+ import : check_python
112
+ python $(project_root ) /scripts/reindex.py --import --sources " tdr:parquet:gcp:${GOOGLE_PROJECT} :*"
113
+ python $(project_root ) /scripts/verify_tdr_sources.py
114
+
111
115
.PHONY : destroy
112
116
destroy :
113
117
$(MAKE ) -C terraform destroy
File renamed without changes.
You can’t perform that action at this time.
0 commit comments