Created
May 31, 2018 05:47
-
-
Save shino/d14d26ed42bfe4aab81361b338780c3b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# set -x | |
set -e | |
unset ERL_LIBS | |
cd jesse | |
# for version in OTP-20.3.4; | |
# for version in OTP-21.0-rc1 OTP-20.3.4 19.3_def; | |
# for version in 19.3_def; | |
for version in OTP-21.0-rc2 OTP-21.0-rc1 OTP-20.3.4 19.3_def; | |
do | |
# kerl_deactivate | |
. ~/local/otp/${version}/activate | |
echo "*********************" ${version} "*****************" | |
git clean -dffx | |
erl -oldshell -eval 'io:format("~p~n", [kernel:module_info(compile)]), init:stop()' -noinput | |
make -j 1 .rebar/DEV_MODE deps compile eunit ct xref dialyzer | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment