Bladeren bron

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>
Lucas Servén Marín 5 jaren geleden
bovenliggende
commit
42c895f70a
2 gewijzigde bestanden met toevoegingen van 3 en 1 verwijderingen
  1. 2 0
      .travis.yml
  2. 1 1
      Makefile

+ 2 - 0
.travis.yml

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

+ 1 - 1
Makefile

@@ -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))