From d2d19a2490d560ae0a7b5aa8802b644ecefcc676 Mon Sep 17 00:00:00 2001 From: Ethan Mosbaugh Date: Tue, 17 May 2022 17:00:19 +0000 Subject: [PATCH] Change build step name to test --- .github/workflows/build-test-deploy.yaml | 7 ++----- Makefile | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test-deploy.yaml b/.github/workflows/build-test-deploy.yaml index 8c205cc9..d757e17d 100644 --- a/.github/workflows/build-test-deploy.yaml +++ b/.github/workflows/build-test-deploy.yaml @@ -9,7 +9,7 @@ on: - "v*.*.*" jobs: - build: + test: runs-on: ubuntu-18.04 steps: - uses: actions/setup-go@v1 @@ -24,11 +24,10 @@ jobs: - uses: actions/checkout@v2 - - run: make + - run: make test compile-preflight: runs-on: ubuntu-latest - needs: build steps: - uses: actions/setup-go@v1 with: @@ -124,7 +123,6 @@ jobs: compile-supportbundle: runs-on: ubuntu-latest - needs: build steps: - uses: actions/setup-go@v1 with: @@ -159,7 +157,6 @@ jobs: compile-collect: runs-on: ubuntu-latest - needs: build steps: - uses: actions/setup-go@v1 with: diff --git a/Makefile b/Makefile index 77349fad..6a81c789 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ endef BUILDFLAGS = -tags "netgo containers_image_ostree_stub exclude_graphdriver_devicemapper exclude_graphdriver_btrfs containers_image_openpgp" -installsuffix netgo -all: test +all: test support-bundle preflight collect .PHONY: ffi ffi: fmt vet