forked from launchdarkly/dotnet-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (21 loc) · 947 Bytes
/
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
build:
dotnet build
test:
dotnet test
clean:
dotnet clean
TEMP_TEST_OUTPUT=/tmp/sdk-contract-test-service.log
BUILDFRAMEWORKS ?= net6.0
TESTFRAMEWORK ?= net6.0
build-contract-tests:
@cd contract-tests && dotnet build TestService.csproj
start-contract-test-service:
@cd contract-tests && dotnet bin/Debug/${TESTFRAMEWORK}/ContractTestService.dll
start-contract-test-service-bg:
@echo "Test service output will be captured in $(TEMP_TEST_OUTPUT)"
@make start-contract-test-service >$(TEMP_TEST_OUTPUT) 2>&1 &
run-contract-tests:
@curl -s https://raw.githubusercontent.com/launchdarkly/sdk-test-harness/main/downloader/run.sh \
| VERSION=v2 PARAMS="-url http://localhost:8000 -debug -stop-service-at-end $(TEST_HARNESS_PARAMS)" 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