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