aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2021-04-19 14:37:30 +0200
committerLoïc Hoguin <[email protected]>2021-04-19 14:37:30 +0200
commit4d44f0a90bf416caf526c8d2742a4dd42c4dc73f (patch)
tree326dfb1c87da71cf558a5f5341f2d83efe3aa05c
parente49b5c0f8852ffab09b0a8ff95bc605b47e73d7e (diff)
downloadci.erlang.mk-4d44f0a90bf416caf526c8d2742a4dd42c4dc73f.tar.gz
ci.erlang.mk-4d44f0a90bf416caf526c8d2742a4dd42c4dc73f.tar.bz2
ci.erlang.mk-4d44f0a90bf416caf526c8d2742a4dd42c4dc73f.zip
Remove HiPE / ErLLVM related functionality
-rw-r--r--early-plugins.mk9
1 files changed, 0 insertions, 9 deletions
diff --git a/early-plugins.mk b/early-plugins.mk
index 06293f5..9301e68 100644
--- a/early-plugins.mk
+++ b/early-plugins.mk
@@ -93,11 +93,6 @@ OTP-DROPPED := $(OTP-18-DROPPED) $(OTP-19-DROPPED) $(OTP-20-DROPPED) \
CI_OTP := $(foreach otp,$(AUTO_CI_OTP),$($(otp))) $(if $(AUTO_CI_MASTER),master)
-# 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.
ifdef AUTO_CI_MASTER
@@ -137,10 +132,6 @@ define ci_auto_cleanup_target
ci-auto-cleanup-$1: $(KERL)
$(verbose) $(KERL) list builds | grep -q "^git,$1$$$$" && $(KERL) delete build $1 || true
$(verbose) $(KERL) list installations | grep -q "^$1 " && $(KERL) delete installation $1 || true
- $(verbose) $(KERL) list builds | grep -q "^git,$1-native$$$$" && $(KERL) delete build $1-native || true
- $(verbose) $(KERL) list installations | grep -q "^$1-native " && $(KERL) delete installation $1-native || true
- $(verbose) $(KERL) list builds | grep -q "^git,$1-erllvm$$$$" && $(KERL) delete build $1-erllvm || true
- $(verbose) $(KERL) list installations | grep -q "^$1-erllvm " && $(KERL) delete installation $1-erllvm || true
endef
$(foreach t,$(OTP-DROPPED),$(eval $(call ci_auto_cleanup_target,$t)))