mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Use my new ci.erlang.mk plugin
Instead of tracking Erlang/OTP versions manually in each project, I can just say OTP-19+ and let the plugin fill in the most recent patch releases for each version. In addition I will configure the CI commands to cleanup unneeded versions automatically.
This commit is contained in:
parent
6cc162583d
commit
56dc5673d0
1 changed files with 10 additions and 4 deletions
14
Makefile
14
Makefile
|
@ -11,10 +11,6 @@ COMPILE_FIRST = cowboy_middleware cowboy_stream cowboy_sub_protocol
|
||||||
PLT_APPS = public_key ssl
|
PLT_APPS = public_key ssl
|
||||||
CT_OPTS += -ct_hooks cowboy_ct_hook [] # -boot start_sasl
|
CT_OPTS += -ct_hooks cowboy_ct_hook [] # -boot start_sasl
|
||||||
|
|
||||||
CI_OTP ?= OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.3 OTP-20.0.5 OTP-20.1.4
|
|
||||||
CI_HIPE ?= $(lastword $(CI_OTP))
|
|
||||||
# CI_ERLLVM ?= $(CI_HIPE)
|
|
||||||
|
|
||||||
# Dependencies.
|
# Dependencies.
|
||||||
|
|
||||||
LOCAL_DEPS = crypto
|
LOCAL_DEPS = crypto
|
||||||
|
@ -29,6 +25,16 @@ TEST_DEPS = ct_helper gun
|
||||||
dep_ct_helper = git https://github.com/extend/ct_helper master
|
dep_ct_helper = git https://github.com/extend/ct_helper master
|
||||||
dep_gun = git https://github.com/ninenines/gun master
|
dep_gun = git https://github.com/ninenines/gun master
|
||||||
|
|
||||||
|
# CI configuration.
|
||||||
|
|
||||||
|
BUILD_DEPS = ci.erlang.mk
|
||||||
|
dep_ci.erlang.mk = git https://github.com/ninenines/ci.erlang.mk master
|
||||||
|
DEP_EARLY_PLUGINS = ci.erlang.mk
|
||||||
|
|
||||||
|
AUTO_CI_OTP ?= OTP-19+
|
||||||
|
AUTO_CI_HIPE ?= OTP-LATEST
|
||||||
|
# AUTO_CI_ERLLVM ?= OTP-LATEST
|
||||||
|
|
||||||
# Standard targets.
|
# Standard targets.
|
||||||
|
|
||||||
include erlang.mk
|
include erlang.mk
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue