aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 326bbc2ab64b9b404583bf157d679ca6918ad1a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
os:
  - linux
  - osx

env:
  global:
    - KERL_BASE_DIR="$TMPDIR"/.kerl
    - KERL_CONFIGURE_DISABLE_APPLICATIONS="odbc"
  matrix: 
    - _KERL_VSN=19.2 
    - _KERL_VSN=18.3
    - _KERL_VSN=17.5
    - _KERL_VSN=R16B03-1

script:
  - ./kerl update releases
  - travis_wait 45 ./kerl build "$_KERL_VSN" "$_KERL_VSN"
  - ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
  - ./kerl status
  - source $(./kerl path install_$_KERL_VSN)/activate
  - erl -s crypto -s init stop
  - kerl_deactivate
  - ./kerl delete installation $(./kerl path install_$_KERL_VSN)
  - ./kerl delete build "$_KERL_VSN"