Skip to content

Commit d2d19a2

Browse files
committed
Change build step name to test
1 parent 5c269e2 commit d2d19a2

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/build-test-deploy.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "v*.*.*"
1010

1111
jobs:
12-
build:
12+
test:
1313
runs-on: ubuntu-18.04
1414
steps:
1515
- uses: actions/setup-go@v1
@@ -24,11 +24,10 @@ jobs:
2424

2525
- uses: actions/checkout@v2
2626

27-
- run: make
27+
- run: make test
2828

2929
compile-preflight:
3030
runs-on: ubuntu-latest
31-
needs: build
3231
steps:
3332
- uses: actions/setup-go@v1
3433
with:
@@ -124,7 +123,6 @@ jobs:
124123
125124
compile-supportbundle:
126125
runs-on: ubuntu-latest
127-
needs: build
128126
steps:
129127
- uses: actions/setup-go@v1
130128
with:
@@ -159,7 +157,6 @@ jobs:
159157

160158
compile-collect:
161159
runs-on: ubuntu-latest
162-
needs: build
163160
steps:
164161
- uses: actions/setup-go@v1
165162
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ endef
3535

3636
BUILDFLAGS = -tags "netgo containers_image_ostree_stub exclude_graphdriver_devicemapper exclude_graphdriver_btrfs containers_image_openpgp" -installsuffix netgo
3737

38-
all: test
38+
all: test support-bundle preflight collect
3939

4040
.PHONY: ffi
4141
ffi: fmt vet

0 commit comments

Comments
 (0)