aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-07-12 12:32:40 +0200
committerLoïc Hoguin <[email protected]>2019-07-12 12:32:40 +0200
commit2c9a3f5ed14099d5b80821509d0dba8f9b31fa4f (patch)
tree296771521f6f905f9c2bd6d08e1e4f99b2e08b70
parent222e2a0760848e0ec3bab50af52e795c972285a8 (diff)
downloadci.erlang.mk-2c9a3f5ed14099d5b80821509d0dba8f9b31fa4f.tar.gz
ci.erlang.mk-2c9a3f5ed14099d5b80821509d0dba8f9b31fa4f.tar.bz2
ci.erlang.mk-2c9a3f5ed14099d5b80821509d0dba8f9b31fa4f.zip
Disable HiPE builds for now
HiPE can still be built using CI_HIPE directly.
-rw-r--r--early-plugins.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/early-plugins.mk b/early-plugins.mk
index c96bc62..ea07c7f 100644
--- a/early-plugins.mk
+++ b/early-plugins.mk
@@ -72,8 +72,11 @@ OTP-DROPPED := $(OTP-18-DROPPED) $(OTP-19-DROPPED) $(OTP-20-DROPPED) \
# Configure Erlang.mk's CI plugin.
CI_OTP := $(foreach otp,$(AUTO_CI_OTP),$($(otp))) $(if $(AUTO_CI_MASTER),master)
-CI_HIPE := $(foreach otp,$(AUTO_CI_HIPE),$($(otp)))
-CI_ERLLVM := $(foreach otp,$(AUTO_CI_ERLLVM),$($(otp)))
+
+# Disable HiPE builds; Erlang/OTP's HiPE support is broken
+# starting from Erlang/OTP 22.0.6. Use explicit versions instead.
+#CI_HIPE := $(foreach otp,$(AUTO_CI_HIPE),$($(otp)))
+#CI_ERLLVM := $(foreach otp,$(AUTO_CI_ERLLVM),$($(otp)))
# Remove the existing master if necessary.