chore: Do not call bootstrap or update from ci build

This commit is contained in:
Robert Prehn 2020-07-02 19:39:53 -05:00
parent d6ccb539a0
commit d1052c8800
2 changed files with 12 additions and 10 deletions

View file

@ -12,6 +12,10 @@ else
export KERL_CONFIGURE_OPTIONS="--disable-hipe --with-ssl=$(brew --prefix openssl)" export KERL_CONFIGURE_OPTIONS="--disable-hipe --with-ssl=$(brew --prefix openssl)"
fi fi
if ! asdf -v &> /dev/null
then
echo "WARNING: No asdf. Skipping erlang, elixir, node installation."
else
export CFLAGS="-O2 -g -fno-stack-check" export CFLAGS="-O2 -g -fno-stack-check"
asdf plugin-add elixir || true asdf plugin-add elixir || true
@ -21,5 +25,6 @@ asdf plugin-add nodejs || true
${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-release-team-keyring ${ASDF_DATA_DIR:=$HOME/.asdf}/plugins/nodejs/bin/import-release-team-keyring
asdf install asdf install
fi
mix local.hex --force mix local.hex --force

View file

@ -3,9 +3,6 @@
set -x set -x
set -e set -e
FULL_PATH=$(realpath $0)
DIR_PATH=$(dirname $FULL_PATH)
mix local.hex --force mix local.hex --force
mix deps.get mix deps.get
$DIR_PATH/test mix test