From 202a88d0ddf8263d5e665879c35adba2373da66a Mon Sep 17 00:00:00 2001 From: Hongcai Ren Date: Fri, 22 Jan 2021 15:03:39 +0800 Subject: [PATCH] stop make images from workflow as it redundant with E2E test. (#137) Signed-off-by: RainbowMango --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52288ae3f..57fa48614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: # show only new issues if it's a pull request. only-new-issues: false codegen: - name: codegen, crdgen + name: codegen runs-on: ubuntu-latest steps: - name: checkout code @@ -33,7 +33,7 @@ jobs: - name: verify crdgen run: hack/verify-crdgen.sh build: - name: compile binary and images + name: compile needs: codegen # rely on codegen successful completion runs-on: ubuntu-latest steps: @@ -49,8 +49,6 @@ jobs: go-version: 1.14.x - name: compile run: make all - - name: make images - run: make images test: name: unit test needs: build