forked from mongodb-labs/drivers-evergreen-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (17 loc) · 652 Bytes
/
Makefile
File metadata and controls
22 lines (17 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.PHONY: clean sleep
all:
@echo "Project successfully compiled"
clean:
@echo "Cleaning files..."
rm -rf ./mongodb .env results.json mo-expansion*
rm -rf "$${TMPDIR:-$${TEMP:-$${TMP:-/tmp}}}"/mongo*
run-server: clean
@echo "Running server..."
.evergreen/run-orchestration.sh
stop-server:
@echo "Stopping server..."
.evergreen/stop-orchestration.sh
test:
@echo "Running tests..."
@echo "All done, thank you and please come again"
@echo '{"results": [{ "status": "PASS", "test_file": "MyTest#1", "start": 860701.361040201, "end": 860701.361116371, "elapsed": 0.000076170, "log_raw": "This test did this and that" } ]}' > test-results.json