remove mac build because of missing tollchain

This commit is contained in:
anton.gurov 2019-11-06 13:29:11 +03:00
parent c42e49ee54
commit ba158c0d80

View File

@ -18,10 +18,10 @@ LDFLAGS="-X \"main.versionInfo=${PKG_VER}-${CI_PIPELINE_ID} built at $(shell dat
all: build test
#build: build.spec build.server
build: distclean build.deps build.game
build.game: build.game.linux64 build.game.win64 build.game.mac
# build.game: build.game.linux64 build.game.win64 build.game.mac
build.game: build.game.linux64 build.game.win64
build.deps:
GIT_SSL_NO_VERIFY=true $(GO) mod vendor
@ -54,7 +54,6 @@ test:
$(GO) test -v $(go list ./... | grep -v /vendor/)
distclean:
# find . ! -name '.gitkeep' ! -path 'linux64' ! -path 'win64' -exec rm -rf {} \;
cd $(CWD)/dist && find . -type f -not \( -name .gitkeep -o -name README \) -delete && \
find . -type d -not \( -name .gitkeep -o -name linux64 -o -name win64 -o -name mac\) -delete