Skip to content

Commit

Permalink
Rename duplicate ci target to quick-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Dec 7, 2020
1 parent e449894 commit bfbd412
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
with:
path: ${{ env.GOPATH }}/src/k8s.io/kops

- name: make ci
- name: make quick-ci
working-directory: ${{ env.GOPATH }}/src/k8s.io/kops
run: |
make ci
make quick-ci
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ govet: ${BINDATA_TARGETS}

# verify is ran by the pull-kops-verify prow job
.PHONY: verify
verify: ci verify-gofmt
verify: quick-ci verify-gofmt

.PHONY: verify-boilerplate
verify-boilerplate:
Expand Down Expand Up @@ -487,8 +487,8 @@ ci: govet verify-gofmt verify-crds verify-gomod verify-goimports verify-boilerpl
# we skip tasks that rely on bazel and are covered by other jobs
# verify-gofmt: uses bazel, covered by pull-kops-verify
# govet needs to be after verify-goimports because it generates bindata.go
.PHONY: ci
ci: verify-crds verify-goimports govet verify-boilerplate verify-bazel verify-misspelling verify-shellcheck verify-bindata | verify-gendocs verify-packages verify-apimachinery
.PHONY: quick-ci
quick-ci: verify-crds verify-goimports govet verify-boilerplate verify-bazel verify-misspelling verify-shellcheck verify-bindata | verify-gendocs verify-packages verify-apimachinery
echo "Done!"

.PHONY: pr
Expand Down

0 comments on commit bfbd412

Please sign in to comment.