0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 04:10:24 +00:00

Don't error out when h2spec can't be compiled

This commit is contained in:
Loïc Hoguin 2019-03-10 11:21:51 +01:00
parent 4918e271bd
commit b9d329c026
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
2 changed files with 12 additions and 7 deletions

View file

@ -71,8 +71,8 @@ test-build:: $(H2SPEC)
$(H2SPEC):
$(gen_verbose) mkdir -p $(GOPATH)/src/github.com/summerwind
$(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPEC))
$(verbose) $(MAKE) -C $(dir $(H2SPEC)) build MAKEFLAGS=
$(verbose) git clone --depth 1 https://github.com/summerwind/h2spec $(dir $(H2SPEC)) || true
$(verbose) $(MAKE) -C $(dir $(H2SPEC)) build MAKEFLAGS= || true
# Use erl_make_certs from the tested release during CI
# and ensure that ct_helper is always recompiled.