aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Fenoll <[email protected]>2018-01-30 12:55:45 +0100
committerPierre Fenoll <[email protected]>2018-01-30 12:55:45 +0100
commit1528bb20104ba44752d443464858013dbb86e1bb (patch)
tree52d82d2baced3e3286aa0c317c402d08784a5d25
parent9c874c259fe647665a6579a339e0e6b4cf326720 (diff)
downloadkerl-1528bb20104ba44752d443464858013dbb86e1bb.tar.gz
kerl-1528bb20104ba44752d443464858013dbb86e1bb.tar.bz2
kerl-1528bb20104ba44752d443464858013dbb86e1bb.zip
ci-centos6: test centos6 + otp/20.2
-rw-r--r--.circleci/config.yml27
1 files changed, 26 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 147ba9f..bf150eb 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1,6 +1,7 @@
version: 2
jobs:
- build:
+
+ debian8_R15B03-1:
docker:
- image: debian:8
environment:
@@ -23,3 +24,27 @@ jobs:
kerl_deactivate
- run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
- run: ./kerl delete build "$_KERL_VSN"
+
+ centos6_20.2:
+ docker:
+ - image: centos:6
+ environment:
+ - _KERL_VSN: 20.2
+ - KERL_CONFIGURE_DISABLE_APPLICATIONS: 'odbc'
+ steps:
+ - run: yum -y update
+ - run: yum -y install git curl ncurses-devel openssl-devel make automake autoconf gcc
+ - 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"