1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-25 06:43:24 +03:00

Fix build script

This commit is contained in:
Tae Won Ha 2016-10-18 18:00:15 +02:00
parent d161f0274f
commit e33986d65a
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
7 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
CODE_SIGN=$1
echo "### Building VimR target"
@ -17,8 +19,7 @@ rm -rf build
make clean
echo "### Building nvim to get the runtime folder"
make CMAKE_FLAGS="-DCUSTOM_UI=0"
make CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=/tmp/nvim" install
make CMAKE_FLAGS="-DCUSTOM_UI=0 -DCMAKE_INSTALL_PREFIX=/tmp/nvim" install
cp -r /tmp/nvim/share/nvim/runtime .
rm -rf build

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
echo "### Cleaning old builds"
rm -rf build

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
BRANCH=$1
COMPOUND_VERSION=$2
IS_SNAPSHOT=$3

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
BRANCH=$1
TAG=$2

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
COMPOUND_VERSION=$1
TAG=$2
VIMR_FILE_NAME=$3

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
echo "### Preparing repositories"
# delete all (local) tags

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
IS_SNAPSHOT=$1
MARKETING_VERSION=$2