You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- cd far && for /f "tokens=1,2,4 delims=, " %%i in ('tools\m4 -P farversion.inc.m4') do appveyor UpdateBuild -Version %%i.%%j.%%k.%APPVEYOR_BUILD_NUMBER% && cd ..
- set Path=C:\msys64\mingw64\bin;%Path%
environment:
matrix:
- platform: x64
configuration: Debug
ADD_MAKE: DEBUG=1 DIRBIT=64
NAME_ADD: .Debug
- platform: x64
configuration: Release
ADD_MAKE: DIRBIT=64
build_script:
#print version
- gcc --version
#build Far
- cd far
- set FARMANAGER_BUILD_TYPE=VS_RELEASE
- set FARMANAGER_SCM_REVISION=%APPVEYOR_REPO_COMMIT%
- mingw32-make -j4 %ADD_MAKE% -f makefile_gcc
- cd ..
#build Plugins
- cd plugins
- mingw32-make -j1 %ADD_MAKE% -f makefile_all_gcc
- cd ..
test: off
after_build:
#archive
- cd far\%configuration%.64.gcc
#set NAME_PREFIX variable as otherwise it is not available when artifacts are collected
- set NAME_PREFIX="Far%NAME_ADD%.%platform%.%appveyor_build_version%.%APPVEYOR_REPO_COMMIT%"