-
Notifications
You must be signed in to change notification settings - Fork 71
/
Makefile
45 lines (31 loc) · 1.04 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
38
39
40
41
42
43
44
45
.PHONY: restore version_files build test docs docs_ci rutta
CONFIGURATION ?= release
TAG_VERSION_SUFFIX := $(shell tools/version.sh)
all: restore version_files build
restore:
dotnet tool restore
version_files:
dotnet fake build --single-target --target AssemblyInfo
dotnet fake build --single-target --target PaketFiles
build: version_files restore
dotnet build src/Core.sln -c release
test: build
dotnet fake build --single-target --target Tests
docs:
(cd ./docs && yarn && yarn dev)
docs_ci:
npm install -g [email protected]
(cd ./docs && yarn && yarn cypress:run)
pack_library:
dotnet fake build --single-target --target Pack
push_library: pack_library
dotnet fake build --single-target --target CheckEnv
dotnet fake build --single-target --target Push
release_library:
dotnet fake build --single-target --target CheckEnv
dotnet fake build --single-target --target Release
rutta:
(cd src/services/Logary.Services.Rutta && make release)
release: restore build test pack_library release_library push_library rutta
clean:
git clean -fxd