surrealpatch/Makefile

66 lines
1.7 KiB
Makefile
Raw Normal View History

2016-02-26 17:24:22 +00:00
# Copyright © 2016 Abcum Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2017-11-10 12:02:11 +00:00
GO ?= CGO_ENABLED=0 go
CGO ?= CGO_ENABLED=1 go
LDF := -s -w
2016-02-26 17:24:22 +00:00
.PHONY: default
2016-04-13 14:17:22 +00:00
default:
@echo "Choose a Makefile target:"
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print " - " $$1}}' | sort
2016-03-17 00:07:53 +00:00
2016-04-13 14:17:22 +00:00
.PHONY: kill
kill:
pkill -9 -f surreal
2016-02-26 17:24:22 +00:00
.PHONY: clean
clean:
2017-11-10 12:02:11 +00:00
$(GO) clean -i -n
2016-09-28 17:07:08 +00:00
2017-11-10 12:02:11 +00:00
.PHONY: tests
tests:
$(GO) test ./...
2016-04-13 14:17:22 +00:00
.PHONY: racer
racer:
$(CGO) test -race ./...
2016-02-26 17:24:22 +00:00
.PHONY: build
build: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
build:
$(GO) build -v -ldflags '$(LDF)'
2016-03-17 00:07:53 +00:00
2016-02-26 17:24:22 +00:00
.PHONY: install
install: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
install:
$(GO) install -v -ldflags '$(LDF)'
2019-12-08 13:53:49 +00:00
.PHONY: compile
compile: LDF += $(shell GOPATH=${GOPATH} build/flags.sh)
compile:
GOOS=linux GOARCH=amd64 $(GO) build -v -ldflags '$(LDF)'
2020-11-16 08:48:20 +00:00
docker build --tag surreal/surreal:latest .
docker build --tag eu.gcr.io/surreal-io/surreal:latest .
docker build --tag us.gcr.io/surreal-io/surreal:latest .
docker push surreal/surreal:latest
docker push eu.gcr.io/surreal-io/surreal:latest
2020-11-16 08:48:20 +00:00
docker push us.gcr.io/surreal-io/surreal:latest
2019-12-08 13:53:49 +00:00
.PHONY: deploy
deploy:
build/macos.sh
build/linux.sh
build/windows.sh