Skip to content
Snippets Groups Projects
Commit 979841b8 authored by hluk's avatar hluk
Browse files

AppVeyor: Use consistent script names

parent 67380c68
No related branches found
No related tags found
No related merge requests found
...@@ -17,23 +17,20 @@ environment: ...@@ -17,23 +17,20 @@ environment:
CMAKE_GENERATOR: Visual Studio 14 2015 Win64 CMAKE_GENERATOR: Visual Studio 14 2015 Win64
VC_VARS_ARCH: amd64 VC_VARS_ARCH: amd64
# Parameters for default build commands (build_script is used instead).
build:
install: install:
- set PATH=%QTDIR%\bin;%PATH% - utils\appveyor\install.bat
- set CMAKE_PREFIX_PATH=%QTDIR%\lib\cmake
# Note: Following also removes sh.exe from PATH so that CMake can generate MinGW Makefile.
- if NOT [%MINGW_PATH%] == [] set PATH=%MINGW_PATH%\bin;%PATH:C:\Program Files\Git\usr\bin;=%
- if [%VC_VARS_ARCH%] == [] call "%VCINSTALLDIR%\vcvarsall.bat" %VC_VARS_ARCH%
before_build: before_build:
- utils\appveyor-before-build.bat - utils\appveyor\before_build.bat
build:
build_script: build_script:
- cmake --build build/ --config Release - utils\appveyor\build_script.bat
after_build: after_build:
- utils\appveyor-after-build.bat - utils\appveyor\after_build.bat
artifacts: artifacts:
- path: 'copyq*.zip' - path: 'copyq*.zip'
......
File moved
File moved
cmake --build build/ --config Release
set PATH=%QTDIR%\bin;%PATH%
set CMAKE_PREFIX_PATH=%QTDIR%\lib\cmake
REM Note: Following removes sh.exe from PATH so that CMake can generate MinGW Makefile.
if NOT [%MINGW_PATH%] == [] set PATH=%MINGW_PATH%\bin;%PATH:C:\Program Files\Git\usr\bin;=%
if [%VC_VARS_ARCH%] == [] call "%VCINSTALLDIR%\vcvarsall.bat" %VC_VARS_ARCH%
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment