Remove mock step from ci pipeline

This commit is contained in:
Dmitry 2019-03-14 14:43:13 +02:00 committed by Dmitry Shulyak
parent af403280a6
commit 9441f798bb
2 changed files with 4 additions and 8 deletions

View File

@ -187,9 +187,9 @@ endif
install-os-dependencies:
_assets/scripts/install_deps.sh
setup-dev: setup-build install-os-dependencies gen-install ##@other Prepare project for development
setup-dev: setup-build mock-install install-os-dependencies gen-install ##@other Prepare project for development
setup-build: dep-install lint-install mock-install release-install gomobile-install ##@other Prepare project for build
setup-build: dep-install lint-install release-install gomobile-install ##@other Prepare project for build
setup: setup-build setup-dev ##@other Prepare project for development and building
@ -286,9 +286,9 @@ lint:
@echo "lint"
@golangci-lint run ./...
ci: lint mock dep-ensure canary-test test-unit test-e2e ##@tests Run all linters and tests at once
ci: lint dep-ensure canary-test test-unit test-e2e ##@tests Run all linters and tests at once
ci-race: lint mock dep-ensure canary-test test-unit test-e2e-race ##@tests Run all linters and tests at once + race
ci-race: lint dep-ensure canary-test test-unit test-e2e-race ##@tests Run all linters and tests at once + race
clean: ##@other Cleanup
rm -fr build/bin/*

View File

@ -46,10 +46,6 @@ pipeline {
sh 'make lint'
} } }
stage('Mock') { steps { dir(env.STATUS_PATH) {
sh 'make mock'
} } }
stage('Dep-Ensure') { steps { dir(env.STATUS_PATH) {
sh 'make dep-ensure'
} } }