blob: cb4236084ba01f8ed1cb15eca22e6ef924de7641 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
language: bash
sudo: false
addons:
apt:
sources:
- debian-sid # for: shellCheck
packages:
- shellcheck
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
before_script:
- set -o pipefail
- |
if [[ "$TRAVIS_OS_NAME" == 'linux' ]] && [[ "$_KERL_VSN" == '19.2' ]]; then
set -e
export USING_SHELLCHECK=1
shellcheck ./kerl
shellcheck ./bash_completion/kerl
# zsh_completion/_kerl # https://github.com/koalaman/shellcheck/issues/809
set +e
fi
script:
- set -e
- ./kerl update releases
- travis_wait 45 ./kerl build "$_KERL_VSN" "$_KERL_VSN"
- ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
- ./kerl status
- |
if [[ "$USING_SHELLCHECK" == '1' ]]; then
shellcheck $(./kerl path install_$_KERL_VSN)/activate
fi
- 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"
- set +e
|