aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Fenoll <[email protected]>2017-11-13 11:47:48 +0100
committerPierre Fenoll <[email protected]>2017-11-25 15:07:19 +0100
commit78985ded0672d686c2868f13137eea7fdf5f7e10 (patch)
tree17a18e66c70b437664292199ac80b8c3d75c4542
parent8771e189a9a6b5ccbaf6f1f15031e3339b70e5a2 (diff)
downloadkerl-78985ded0672d686c2868f13137eea7fdf5f7e10.tar.gz
kerl-78985ded0672d686c2868f13137eea7fdf5f7e10.tar.bz2
kerl-78985ded0672d686c2868f13137eea7fdf5f7e10.zip
circleci: build R15B03 with debian 8
-rw-r--r--.circleci/config.yml25
-rwxr-xr-xkerl2
2 files changed, 26 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..147ba9f
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,25 @@
+version: 2
+jobs:
+ build:
+ docker:
+ - image: debian:8
+ environment:
+ - _KERL_VSN: R15B03-1
+ - KERL_CONFIGURE_DISABLE_APPLICATIONS: 'odbc'
+ steps:
+ - run: apt-get update && apt-get upgrade -y
+ - run: apt-get install -y git curl build-essential libncurses-dev libssl-dev
+ - checkout
+ - run: ./kerl update releases
+ - run:
+ command: ./kerl build "$_KERL_VSN" "$_KERL_VSN"
+ no_output_timeout: 45m
+ - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
+ - run: ./kerl status
+ - run: |
+ set -x
+ source $(./kerl path install_$_KERL_VSN)/activate
+ erl -s crypto -s init stop
+ kerl_deactivate
+ - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
+ - run: ./kerl delete build "$_KERL_VSN"
diff --git a/kerl b/kerl
index 70cf5ec..92729f4 100755
--- a/kerl
+++ b/kerl
@@ -898,7 +898,7 @@ _KERL_ACTIVE_DIR="$absdir"
export _KERL_ACTIVE_DIR
# https://twitter.com/mononcqc/status/877544929496629248
export _KERL_SAVED_ERL_AFLAGS=" \$ERL_AFLAGS"
-kernel_history=\$(echo "\$ERL_AFLAGS" | grep "kernel shell_history")
+kernel_history=\$(echo "\$ERL_AFLAGS" | grep 'kernel shell_history' || true)
if [ -z "\$kernel_history" ]; then
export ERL_AFLAGS="-kernel shell_history enabled \$ERL_AFLAGS"
fi