-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
37 lines (28 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
all: install
###############################################################################
# Build / Install
###############################################################################
build: go.sum
ifeq ($(OS),Windows_NT)
@echo "building habbgo binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/habbgo.exe ./habbgo
else
@echo "building habbgo binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/habbgo ./habbgo
endif
install:
@echo "installing habbgo binary..."
@go install -mod readonly $(BUILD_FLAGS) .
build-habbgo-docker:
docker build -t jtieri/habbgo:latest -f ./docker/habbgo/Dockerfile .
clean:
rm -rf build
###############################################################################
# Tests / CI
###############################################################################
test:
@go test -mod readonly -v ./...
run-docker:
docker build -t jtieri/habbgo:latest -f ./docker/habbgo/Dockerfile .
docker run jtieri/habbgo