-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
66 lines (45 loc) · 1.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
SHELL := /usr/bin/env bash
export ORC_ORTHANC_SERVER ?= http://localhost:8028
export ORC_ORTHANC_USERNAME ?= orthanc
export ORC_ORTHANC_PASSWORD ?= orthanc
export ORC_DATAFILES_PATH ?= ./tests/data/dicom
export DINO_SCP_HOST ?= 0.0.0.0
export DINO_SCP_PORT ?= 5252
export DINO_SCP_AET ?= DINO
.PHONY: test clean unit_test integration_test unit_test_coverage integration_test_coverage install_tarpaulin cleanup_orthanc populate_orthanc reset_orthanc start_services stop_services release
build:
cargo build
test: unit_test integration_test
clean: cleanup_orthanc stop_services
cargo clean
unit_test:
cargo test --lib -- --show-output ${TEST}
unit_test_coverage: install_tarpaulin
cargo tarpaulin --lib --verbose --ignore-tests --all-features --workspace --timeout 120 --out Xml
integration_test: reset_orthanc
cargo test --test integration -- --test-threads=1 --show-output ${TEST}
integration_test_coverage: install_tarpaulin reset_orthanc
cargo tarpaulin --test integration --follow-exec --verbose --ignore-tests --all-features --workspace --timeout 120 --out Xml -- --test-threads=1
install_tarpaulin:
# https://github.com/xd009642/tarpaulin/issues/1046
cargo install --version 0.19.1 cargo-tarpaulin
install_tarpaulin_HEAD:
cargo install --git https://github.com/xd009642/tarpaulin.git --branch develop cargo-tarpaulin
cleanup_orthanc:
./scripts/cleanup_orthanc.sh
populate_orthanc:
./scripts/populate_orthanc.sh
reset_orthanc: cleanup_orthanc populate_orthanc
start_services:
docker-compose pull
docker-compose up -d
stop_services:
docker-compose down
check_completion:
mkdir -p /tmp/orc_completion
ORC_COMPLETION_OUTPUT_DIR=/tmp/orc_completion cargo build
diff --exclude=README.md ./completion /tmp/orc_completion
release:
cargo-release ${VERSION}
build_release:
cargo build --release