From bc79529b4dbd8951b833818ccc7179de22e8ed88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 25 Apr 2018 11:34:32 +0200 Subject: Build h2spec automatically when running tests --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Makefile b/Makefile index 603842d..cecebd6 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,23 @@ app:: rebar.config # DIALYZER_OPTS += --src -r test +# h2spec setup. + +GOPATH := $(ERLANG_MK_TMP)/gopath +export GOPATH + +H2SPEC := $(GOPATH)/src/github.com/summerwind/h2spec/h2spec +export H2SPEC + +# @todo It would be better to allow these dependencies to be specified +# on a per-target basis instead of for all targets. +test-build:: $(H2SPEC) + +$(H2SPEC): + $(gen_verbose) mkdir -p $(GOPATH)/src/github.com/summerwind + $(verbose) git clone git@github.com:summerwind/h2spec.git $(dir $(H2SPEC)) + $(verbose) make -C $(GOPATH)/src/github.com/summerwind/h2spec build + # Use erl_make_certs from the tested release during CI. ci-setup:: clean deps test-deps -- cgit v1.2.3