File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 41
41
make lint
42
42
43
43
- name : Build
44
+ if : (!startsWith(github.head_ref, 'release'))
44
45
run : |
45
46
make build
46
47
48
+ # For release testing
49
+ - name : Build All
50
+ if : github.base_ref == 'master' && startsWith(github.head_ref, 'release')
51
+ run : |
52
+ make release
53
+
47
54
- name : Test
48
55
env :
49
56
CC_TEST_REPORTER_ID : ${{ secrets.CC_TEST_REPORTER_ID }}
64
71
uses : docker/setup-buildx-action@v3
65
72
66
73
- name : Docker Build
74
+ if : (!startsWith(github.head_ref, 'release'))
67
75
run : |
68
76
make docker
77
+
78
+ # For release testing
79
+ - name : Docker Build All
80
+ if : github.base_ref == 'master' && startsWith(github.head_ref, 'release')
81
+ run : |
82
+ make docker-all
Original file line number Diff line number Diff line change 22
22
- 📖 Improved docs
23
23
24
24
## Important Notes
25
+ - Remove support of arm/v6 for distroless image runtime. Alpine tags still support arm/v6.
25
26
26
27
## Breaking Changes
27
28
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ docker-all: docker
71
71
$(DOCKER_BUILDX ) --platform linux/amd64 -t $(REGISTRY ) /$(REPOSITORY ) :latest-amd64 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -amd64 .
72
72
$(DOCKER_BUILDX ) --platform linux/arm64 -t $(REGISTRY ) /$(REPOSITORY ) :latest-arm64 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -arm64 .
73
73
$(DOCKER_BUILDX ) --platform linux/ppc64le -t $(REGISTRY ) /$(REPOSITORY ) :latest-ppc64le -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -ppc64le .
74
- $(DOCKER_BUILDX ) --platform linux/arm/v6 -t $(REGISTRY ) /$(REPOSITORY ) :latest-armv6 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -armv6 .
75
74
$(DOCKER_BUILDX ) --platform linux/arm/v7 -t $(REGISTRY ) /$(REPOSITORY ) :latest-armv7 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -armv7 .
76
75
$(DOCKER_BUILDX ) --platform linux/s390x -t $(REGISTRY ) /$(REPOSITORY ) :latest-s390x -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -s390x .
77
76
@@ -80,7 +79,6 @@ docker-push-all: docker-push
80
79
$(DOCKER_BUILDX_PUSH ) --platform linux/amd64 -t $(REGISTRY ) /$(REPOSITORY ) :latest-amd64 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -amd64 .
81
80
$(DOCKER_BUILDX_PUSH ) --platform linux/arm64 -t $(REGISTRY ) /$(REPOSITORY ) :latest-arm64 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -arm64 .
82
81
$(DOCKER_BUILDX_PUSH ) --platform linux/ppc64le -t $(REGISTRY ) /$(REPOSITORY ) :latest-ppc64le -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -ppc64le .
83
- $(DOCKER_BUILDX_PUSH ) --platform linux/arm/v6 -t $(REGISTRY ) /$(REPOSITORY ) :latest-armv6 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -armv6 .
84
82
$(DOCKER_BUILDX_PUSH ) --platform linux/arm/v7 -t $(REGISTRY ) /$(REPOSITORY ) :latest-armv7 -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -armv7 .
85
83
$(DOCKER_BUILDX_PUSH ) --platform linux/s390x -t $(REGISTRY ) /$(REPOSITORY ) :latest-s390x -t $(REGISTRY ) /$(REPOSITORY ) :${VERSION} -s390x .
86
84
You can’t perform that action at this time.
0 commit comments