Remove mock step from ci pipeline
This commit is contained in:
parent
af403280a6
commit
9441f798bb
8
Makefile
8
Makefile
|
@ -187,9 +187,9 @@ endif
|
||||||
install-os-dependencies:
|
install-os-dependencies:
|
||||||
_assets/scripts/install_deps.sh
|
_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
|
setup: setup-build setup-dev ##@other Prepare project for development and building
|
||||||
|
|
||||||
|
@ -286,9 +286,9 @@ lint:
|
||||||
@echo "lint"
|
@echo "lint"
|
||||||
@golangci-lint run ./...
|
@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
|
clean: ##@other Cleanup
|
||||||
rm -fr build/bin/*
|
rm -fr build/bin/*
|
||||||
|
|
|
@ -46,10 +46,6 @@ pipeline {
|
||||||
sh 'make lint'
|
sh 'make lint'
|
||||||
} } }
|
} } }
|
||||||
|
|
||||||
stage('Mock') { steps { dir(env.STATUS_PATH) {
|
|
||||||
sh 'make mock'
|
|
||||||
} } }
|
|
||||||
|
|
||||||
stage('Dep-Ensure') { steps { dir(env.STATUS_PATH) {
|
stage('Dep-Ensure') { steps { dir(env.STATUS_PATH) {
|
||||||
sh 'make dep-ensure'
|
sh 'make dep-ensure'
|
||||||
} } }
|
} } }
|
||||||
|
|
Loading…
Reference in New Issue