forked from edoardottt/cariddi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.bat
88 lines (72 loc) · 1.04 KB
/
make.bat
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@echo off
SET ARG=%1
IF "%ARG%"=="windows" (
CALL :Windows
GOTO Done
)
IF "%ARG%"=="unwindows" (
CALL :Unwindows
GOTO Done
)
IF "%ARG%"=="update" (
CALL :Update
GOTO Done
)
IF "%ARG%"=="tidy" (
CALL :Tidy
GOTO Done
)
IF "%ARG%"=="lint" (
CALL :Lint
GOTO Done
)
IF "%ARG%"=="remod" (
del go.mod
del go.sum
go mod init github.com/edoardottt/cariddi
go get
GOTO Done
)
IF "%ARG%"=="test" (
CALL :Test
GOTO Done
)
GOTO Done
:Test
set GO111MODULE=on
set CGO_ENABLED=0
echo Testing ...
go test -v ./...
echo Done
EXIT /B 0
:Tidy
go get -u ./...
go mod tidy -v
echo Done.
EXIT /B 0
:Lint
golangci-lint run
EXIT /B 0
:Update
set GO111MODULE=on
echo Updating ...
go get -u ./...
go mod tidy -v
CALL :Unwindows
git pull
CALL :Windows
echo Done.
EXIT /B 0
:Windows
set GOOS=windows
set GOARCH=amd64
set GO111MODULE=on
set CGO_ENABLED=0
go build ./cmd/cariddi
echo Done.
EXIT /B 0
:Unwindows
del /f cariddi.exe
echo Done.
EXIT /B 0
:Done