chore: Do not call bootstrap or update from ci build
This commit is contained in:
parent
d6ccb539a0
commit
d1052c8800
2 changed files with 12 additions and 10 deletions
|
@ -12,14 +12,19 @@ else
|
|||
export KERL_CONFIGURE_OPTIONS="--disable-hipe --with-ssl=$(brew --prefix openssl)"
|
||||
fi
|
||||
|
||||
export CFLAGS="-O2 -g -fno-stack-check"
|
||||
if ! asdf -v &> /dev/null
|
||||
then
|
||||
echo "WARNING: No asdf. Skipping erlang, elixir, node installation."
|
||||
else
|
||||
export CFLAGS="-O2 -g -fno-stack-check"
|
||||
|
||||
asdf plugin-add elixir || true
|
||||
asdf plugin-add erlang || true
|
||||
asdf plugin-add nodejs || true
|
||||
asdf plugin-add elixir || true
|
||||
asdf plugin-add erlang || true
|
||||
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
|
||||
|
|
|
@ -3,9 +3,6 @@
|
|||
set -x
|
||||
set -e
|
||||
|
||||
FULL_PATH=$(realpath $0)
|
||||
DIR_PATH=$(dirname $FULL_PATH)
|
||||
|
||||
mix local.hex --force
|
||||
mix deps.get
|
||||
$DIR_PATH/test
|
||||
mix test
|
Loading…
Reference in a new issue