put back temp removed flags and env vars (#2339)
parent
9a2b8a0814
commit
60e7c12e92
|
@ -85,14 +85,14 @@ jobs:
|
||||||
# with:
|
# with:
|
||||||
# node-version: 12.x
|
# node-version: 12.x
|
||||||
- name: Build
|
- name: Build
|
||||||
#env:
|
env:
|
||||||
# VFLAGS: -cc msvc
|
VFLAGS: -cc msvc
|
||||||
run: |
|
run: |
|
||||||
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
git clone --depth=1 https://github.com/ubawurinna/freetype-windows-binaries.git thirdparty/freetype/
|
||||||
.\make.bat -msvc
|
.\make.bat -msvc
|
||||||
- name: Test
|
- name: Test
|
||||||
#env:
|
env:
|
||||||
# VFLAGS: -cc msvc
|
VFLAGS: -cc msvc
|
||||||
run: |
|
run: |
|
||||||
.\v.exe test v
|
.\v.exe test v
|
||||||
## v.js dosent work on windows
|
## v.js dosent work on windows
|
||||||
|
|
|
@ -49,7 +49,7 @@ script:
|
||||||
fi
|
fi
|
||||||
if [[ "${TRAVIS_JOB_NAME}" == "windows_msvc" ]]; then
|
if [[ "${TRAVIS_JOB_NAME}" == "windows_msvc" ]]; then
|
||||||
echo "Building V with MSVC"
|
echo "Building V with MSVC"
|
||||||
#export VFLAGS="-cc msvc"
|
export VFLAGS="-cc msvc"
|
||||||
./make.bat -msvc
|
./make.bat -msvc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
2
make.bat
2
make.bat
|
@ -69,7 +69,7 @@ if %ERRORLEVEL% NEQ 0 (
|
||||||
)
|
)
|
||||||
|
|
||||||
echo rebuild from source (twice, in case of C definitions changes)
|
echo rebuild from source (twice, in case of C definitions changes)
|
||||||
v2.exe -o v3.exe v.v
|
v2.exe -cc msvc -o v3.exe v.v
|
||||||
v3.exe -cc msvc -o v.exe -prod v.v
|
v3.exe -cc msvc -o v.exe -prod v.v
|
||||||
if %ERRORLEVEL% NEQ 0 (
|
if %ERRORLEVEL% NEQ 0 (
|
||||||
echo V failed to build itself
|
echo V failed to build itself
|
||||||
|
|
Loading…
Reference in New Issue