Skip to content

Instantly share code, notes, and snippets.

@shino
Created May 31, 2018 05:47
Show Gist options
  • Save shino/d14d26ed42bfe4aab81361b338780c3b to your computer and use it in GitHub Desktop.
Save shino/d14d26ed42bfe4aab81361b338780c3b to your computer and use it in GitHub Desktop.
#!/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