1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00

make ci for check-in tests

This commit is contained in:
Chen-I Lim 2021-01-20 09:55:36 -08:00
parent 6831497630
commit d7f49c3135

View File

@ -1,4 +1,4 @@
.PHONY: prebuild clean cleanall server server-mac server-linux server-win server-linux-package generate watch-server webapp mac-app win-app linux-app
.PHONY: prebuild clean cleanall ci server server-mac server-linux server-win server-linux-package generate watch-server webapp mac-app win-app linux-app
PACKAGE_FOLDER = octo
@ -25,6 +25,11 @@ prebuild:
go get github.com/mattn/go-sqlite3
cd webapp; npm install
ci: server-test
cd webapp; npm run check
cd webapp; npm run test
cd webapp; npm run cypress:ci
server:
$(eval LDFLAGS += -X "github.com/mattermost/mattermost-octo-tasks/server/model.Edition=dev")
cd server; go build -ldflags '$(LDFLAGS)' -o ../bin/octoserver ./main