forked from launchdarkly/dotnet-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (18 loc) · 674 Bytes
/
Makefile
File metadata and controls
28 lines (18 loc) · 674 Bytes
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
build:
dotnet build
test:
dotnet test
clean:
dotnet clean
TEMP_TEST_OUTPUT=/tmp/sdk-contract-test-service.log
build-contract-tests:
@./scripts/build-contract-tests.sh
start-contract-test-service:
@./scripts/start-contract-test-service.sh
start-contract-test-service-bg:
@echo "Test service output will be captured in $(TEMP_TEST_OUTPUT)"
@./scripts/start-contract-test-service.sh >$(TEMP_TEST_OUTPUT) 2>&1 &
run-contract-tests:
@./scripts/run-contract-tests.sh
contract-tests: build-contract-tests start-contract-test-service-bg run-contract-tests
.PHONY: build test clean build-contract-tests start-contract-test-service run-contract-tests contract-tests