Makefile: no darwin+arm windows+arm build matrix

This commit excludes Darwin+ARM and Windows+ARM combinations from the
build matrix.

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
Lucas Servén Marín 2020-11-23 11:16:35 +01:00
parent f52efc212c
commit 42c895f70a
No known key found for this signature in database
GPG Key ID: 586FEAF680DA74AD
2 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,8 @@ install: true
script:
- make
- make all-build
- make OS=darwin
- make OS=windows
- make clean
- make unit
- make lint

View File

@ -59,7 +59,7 @@ push-latest-%:
push-%:
@$(MAKE) --no-print-directory ARCH=$* push
all-build: $(foreach os, $(ALL_OS), $(addprefix build-$(os)-, $(ALL_ARCH)))
all-build: $(addprefix build-$(OS)-, $(ALL_ARCH))
all-container: $(addprefix container-, $(ALL_ARCH))