1
0
Fork 0

Fix neovim and pass build
continuous-integration/drone/push Build was killed Details

main
Ambrose Chua 2019-09-29 18:10:11 +08:00
parent bab2d01870
commit 1414eff2c7
Signed by: ambrose
GPG Key ID: BC367D33F140B5C2
4 changed files with 14 additions and 15 deletions

View File

@ -13,7 +13,7 @@ brew "bash" # improve bash version
brew "neovim" brew "neovim"
brew "pinentry" brew "pinentry"
# languages # languages
brew "python" brew "python3"
brew "go" brew "go"
brew "node" brew "node"
brew "deno" brew "deno"
@ -31,11 +31,10 @@ cask "docker"
# desktop # desktop
tap "koekeishiya/formulae" tap "koekeishiya/formulae"
brew "koekeishiya/formulae/skhd" brew "koekeishiya/formulae/skhd"
brew "koekeishiya/formulae/chunkwm" brew "koekeishiya/formulae/yabai"
cask "bitbar" cask "bitbar"
cask "iterm2-nightly" cask "iterm2-nightly"
cask "firefoxnightly" cask "firefoxnightly"
cask "brave-browser"
# user tools # user tools
brew "thefuck" brew "thefuck"
@ -70,8 +69,8 @@ brew "tmux"
brew "mosh" brew "mosh"
#brew "qemu" #brew "qemu"
cask "intel-haxm" cask "intel-haxm"
cask "virtualbox" #cask "virtualbox"
cask "xquartz" #cask "xquartz"
#cask "daisydisk" #cask "daisydisk"
brew "ncdu" brew "ncdu"
tap "jeffreywildman/virt-manager" tap "jeffreywildman/virt-manager"
@ -143,7 +142,7 @@ cask "vlc"
cask "blender" cask "blender"
# blackmagic disk speed test # blackmagic disk speed test
# epson scan # epson scan
cask "skyfonts" #cask "skyfonts"
# extra electronics # extra electronics
#brew "avrdude" #brew "avrdude"

View File

@ -8,7 +8,7 @@ echo "Installing neovim $NEOVIM_VERSION..."
echo echo
apk add --no-cache \ apk add --no-cache \
gettext \ gettext \
unibilium \ unibilium \
libtermkey \ libtermkey \
libvterm \ libvterm \
@ -25,20 +25,20 @@ apk add --no-cache --virtual .build-deps \
automake \ automake \
cmake \ cmake \
libtool \ libtool \
gettext-dev \ gettext-dev \
unibilium-dev \ unibilium-dev \
libtermkey-dev \ libtermkey-dev \
libvterm-dev \ libvterm-dev \
python3-dev \ python3-dev \
python3 python3
git clone --depth 1 https://github.com/neovim/neovim.git
cd neovim
if [ "$NEOVIM_VERSION" = "nightly" ]; then if [ "$NEOVIM_VERSION" = "nightly" ]; then
git checkout $NEOVIM_VERSION branch=$NEOVIM_VERSION
else else
git checkout v$NEOVIM_VERSION branch=v$NEOVIM_VERSION
fi fi
git clone --depth 1 -b $branch https://github.com/neovim/neovim.git
cd neovim
make CMAKE_EXTRA_FLAGS=-DENABLE_JEMALLOC=OFF >/dev/null || make make CMAKE_EXTRA_FLAGS=-DENABLE_JEMALLOC=OFF >/dev/null || make
make install make install
cd .. cd ..

View File

@ -7,5 +7,5 @@ echo "Installing pass..."
echo echo
sudo apk add --no-cache \ sudo apk add --no-cache \
pass@testing gnupg \
pass@testing

View File

@ -9,7 +9,7 @@ export NODE_VERSION=10.15.0
export YARN_VERSION=1.13.0 export YARN_VERSION=1.13.0
export JDK_NUMBER=14 export JDK_NUMBER=14
export JDK_VERSION=16 export JDK_VERSION=15
export VIM_PLUG_VERSION=0.10.0 export VIM_PLUG_VERSION=0.10.0