From 78985ded0672d686c2868f13137eea7fdf5f7e10 Mon Sep 17 00:00:00 2001 From: Pierre Fenoll Date: Mon, 13 Nov 2017 11:47:48 +0100 Subject: circleci: build R15B03 with debian 8 --- .circleci/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .circleci/config.yml (limited to '.circleci/config.yml') 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" -- cgit v1.2.3