From 4ed3b556503b3912843b0fbed4bc84967189d14d Mon Sep 17 00:00:00 2001 From: Andrei Dekterev Date: Wed, 11 May 2022 15:57:40 +0700 Subject: [PATCH] fix(#2425): add new stages in makefile --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Makefile b/Makefile index 4f1182de..1017f2a8 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,27 @@ build-f: clean REACT_APP_STAGE=f-staging \ npm run build +build-g: clean + REACT_APP_TYPE=ott \ + REACT_APP_ENV=staging \ + REACT_APP_CLIENT=instat \ + REACT_APP_STAGE=g-staging \ + npm run build + +build-h: clean + REACT_APP_TYPE=ott \ + REACT_APP_ENV=staging \ + REACT_APP_CLIENT=instat \ + REACT_APP_STAGE=h-staging \ + npm run build + +build-i: clean + REACT_APP_TYPE=ott \ + REACT_APP_ENV=staging \ + REACT_APP_CLIENT=instat \ + REACT_APP_STAGE=i-staging \ + npm run build + auth-build: rm -rf build_auth @@ -148,6 +169,15 @@ e-stage: build-e f-stage: build-f rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ +g-stage: build-f + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + +h-stage: build-f + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + +i-stage: build-f + rsync -zavP --delete-before build/ -e 'ssh -p 666' ott-staging@10.0.3.8:/usr/local/www/ott-staging/f-wwwroot/ + test: npm test