* Improve e2etests readme, remove unused apt install * Add testing E2E Tests MultiOS * Get rid of deprecation warning * Smart selection of docker network driver for different OSes * Unify makefile invocation for windows as well * Tune JVM for ES and Keycloak * fix: Made required changes to run locally on arm MacOS * fix: FIxed network command and removed dashboard node user as it is not needed * fix: make dashboard work for Mac * Make runs without dashboard work again, make BROWSE tunable and document it --------- Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Antonis Stamatiou <stamatiou.antonis@gmail.com>
31 строка
840 B
Makefile
31 строка
840 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: all run stop
|
|
all: run
|
|
run: start-server prepare-server run-cypress
|
|
stop: stop-server stop-dashboard clean-env-placeholders
|
|
|
|
.PHONY: start-server prepare-server run-cypress stop-server restart-server
|
|
start-server:
|
|
bash ./.ci/server.start.sh
|
|
prepare-server:
|
|
bash ./.ci/server.prepare.sh
|
|
run-cypress:
|
|
bash ./.ci/server.run_cypress.sh
|
|
stop-server:
|
|
bash ./.ci/server.stop.sh
|
|
restart-server: stop-server start-server
|
|
|
|
.PHONY: start-dashboard stop-dashboard
|
|
start-dashboard:
|
|
bash ./.ci/dashboard.start.sh
|
|
stop-dashboard:
|
|
bash ./.ci/dashboard.stop.sh
|
|
|
|
.PHONY: print-env-placeholders clean-env-placeholders
|
|
print-env-placeholders:
|
|
find .ci -maxdepth 1 -name '.env.*' | xargs --verbose -l cat
|
|
clean-env-placeholders:
|
|
git reset .ci/.env.{cypress,server,dashboard}
|
|
git checkout .ci/.env.{cypress,server,dashboard}
|