diff options
author | Mark Allen <[email protected]> | 2017-02-20 15:17:52 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2017-02-20 15:17:52 -0600 |
commit | 485323434eb3992dacb6442177a7d848b82af113 (patch) | |
tree | 602f163f7ead50cf5795302136d07767e907d1dc /.travis.yml | |
parent | 69579330e765ff2a97e75d04ba0a4d0ebedf23d0 (diff) | |
parent | 23acfaba005c2dade4c80ccdb98fd27fab95ea9a (diff) | |
download | kerl-485323434eb3992dacb6442177a7d848b82af113.tar.gz kerl-485323434eb3992dacb6442177a7d848b82af113.tar.bz2 kerl-485323434eb3992dacb6442177a7d848b82af113.zip |
Merge pull request #183 from kerl/enable-travis-ci
Enable travis-CI, add 'kerl path' subcommand
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..326bbc2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,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" |