diff options
author | Valery Piashchynski <[email protected]> | 2021-02-11 14:06:10 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-11 14:06:10 +0300 |
commit | 8f6cafdc0948a5ea13bf9a811b576aa4b3ef7e4a (patch) | |
tree | 92727c3ff8087597bac65eee2c26c9484c98be7f /Makefile | |
parent | 7978c59f0ed286912bfcaec81b76e54532b1a9bf (diff) | |
parent | 509abc76a0f7b88678de67843ca79d9052ad8dd6 (diff) |
Merge pull request #530 from spiral/release_stabilizationv2.0.0-RC.1
stabilization(RC): rc stabilization
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 35 |
1 files changed, 31 insertions, 4 deletions
@@ -24,7 +24,7 @@ uninstall: ## Uninstall locally installed RR rm -f /usr/local/bin/rr test_coverage: - docker-compose -f tests/docker-compose.yaml up -d + docker-compose -f tests/docker-compose.yaml up -d --remove-orphans rm -rf coverage mkdir coverage go test -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./coverage/pipe.out -covermode=atomic ./pkg/transport/pipe @@ -93,9 +93,6 @@ test_1.14: ## Run application tests go1.14.14 test -v -race -tags=debug ./pkg/pool go1.14.14 test -v -race -tags=debug ./pkg/worker go1.14.14 test -v -race -tags=debug ./pkg/worker_watcher - go1.14.14 test -v -race -tags=debug ./tests/plugins/temporal - go1.14.14 test -v -race -tags=debug ./plugins/temporal/protocol - go1.14.14 test -v -race -tags=debug ./plugins/temporal/workflow go1.14.14 test -v -race -tags=debug ./tests/plugins/http go1.14.14 test -v -race -tags=debug ./plugins/http/config go1.14.14 test -v -race -tags=debug ./tests/plugins/informer @@ -119,4 +116,34 @@ test_1.14: ## Run application tests go1.14.14 test -v -race -tags=debug ./tests/plugins/kv/memcached docker-compose -f tests/docker-compose.yaml down +test_1.16: ## Run application tests + docker-compose -f tests/docker-compose.yaml up -d + go1.16rc1 test -v -race -tags=debug ./pkg/transport/pipe + go1.16rc1 test -v -race -tags=debug ./pkg/transport/socket + go1.16rc1 test -v -race -tags=debug ./pkg/pool + go1.16rc1 test -v -race -tags=debug ./pkg/worker + go1.16rc1 test -v -race -tags=debug ./pkg/worker_watcher + go1.16rc1 test -v -race -tags=debug ./tests/plugins/http + go1.16rc1 test -v -race -tags=debug ./plugins/http/config + go1.16rc1 test -v -race -tags=debug ./tests/plugins/informer + go1.16rc1 test -v -race -tags=debug ./tests/plugins/reload + go1.16rc1 test -v -race -tags=debug ./tests/plugins/server + go1.16rc1 test -v -race -tags=debug ./tests/plugins/checker + go1.16rc1 test -v -race -tags=debug ./tests/plugins/config + go1.16rc1 test -v -race -tags=debug ./tests/plugins/gzip + go1.16rc1 test -v -race -tags=debug ./tests/plugins/headers + go1.16rc1 test -v -race -tags=debug ./tests/plugins/logger + go1.16rc1 test -v -race -tags=debug ./tests/plugins/metrics + go1.16rc1 test -v -race -tags=debug ./tests/plugins/redis + go1.16rc1 test -v -race -tags=debug ./tests/plugins/resetter + go1.16rc1 test -v -race -tags=debug ./tests/plugins/rpc + go1.16rc1 test -v -race -tags=debug ./tests/plugins/static + go1.16rc1 test -v -race -tags=debug ./plugins/kv/boltdb + go1.16rc1 test -v -race -tags=debug ./plugins/kv/memory + go1.16rc1 test -v -race -tags=debug ./plugins/kv/memcached + go1.16rc1 test -v -race -tags=debug ./tests/plugins/kv/boltdb + go1.16rc1 test -v -race -tags=debug ./tests/plugins/kv/memory + go1.16rc1 test -v -race -tags=debug ./tests/plugins/kv/memcached + docker-compose -f tests/docker-compose.yaml down + test_pipeline: test_1.14 test |