install Lua, change buildtype to Release
This commit is contained in:
parent
c6b39546ba
commit
0633d14d6b
3 changed files with 5 additions and 2 deletions
|
@ -2,7 +2,7 @@ stages:
|
||||||
- build
|
- build
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
BUILD_TYPE: "DEV"
|
BUILD_TYPE: "REL"
|
||||||
|
|
||||||
Windows Installer:
|
Windows Installer:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
|
@ -8,7 +8,7 @@ service:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- BUILD_TYPE=DEV
|
- BUILD_TYPE=REL
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
# Install lua
|
# Install lua
|
||||||
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
|
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
|
||||||
brew install lua
|
brew install lua
|
||||||
|
else
|
||||||
|
apt-get update -qq && \
|
||||||
|
apt-get install -qq lua5.2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if build is not tagged
|
# Check if build is not tagged
|
||||||
|
|
Loading…
Reference in a new issue