git repos / PlatformFolders

commit b31160af

Poul Sander · 2018-04-20 11:41
b31160af03347df5f43c3adbae89a3f25b423a60 patch · browse files
parent d7909cdcbb6fc1f300d09d5f86541dfc287d4a95
parent 3a8426ed1d8c9076919b82f97b10f7bc7377fd4e

Merge pull request #7 from sum01/appveyor_fix

Appveyor fix

Changed files

M README.md before
M appveyor.yml before
diff --git a/README.md b/README.md index 8ffdc0d..003ceb4 100644 --- a/README.md +++ b/README.md
@@ -1,4 +1,5 @@
-# PlatformFolders [![Build Status](https://travis-ci.org/sago007/PlatformFolders.svg?branch=master)](https://travis-ci.org/sago007/PlatformFolders) [![license](https://img.shields.io/github/license/sago007/PlatformFolders.svg)](https://raw.githubusercontent.com/sago007/PlatformFolders/master/LICENSE)
+# PlatformFolders [![Build Status](https://travis-ci.org/sago007/PlatformFolders.svg?branch=master)](https://travis-ci.org/sago007/PlatformFolders) [![AppVeyor](https://img.shields.io/appveyor/ci/sago007/PlatformFolders.svg?label=Windows)](https://ci.appveyor.com/project/sago007/platformfolders) [![license](https://img.shields.io/github/license/sago007/PlatformFolders.svg)](https://raw.githubusercontent.com/sago007/PlatformFolders/master/LICENSE)
+
A C++ library to look for special directories like "My Documents" and "%APPDATA%" so that you do not need to write Linux, Windows and Mac OS X specific code
Can be found at: https://github.com/sago007/PlatformFolders
diff --git a/appveyor.yml b/appveyor.yml index 739fbf2..860cb79 100644 --- a/appveyor.yml +++ b/appveyor.yml
@@ -46,19 +46,15 @@ clone_depth: 1
# Generate the .sln file with Cmake before running MSBuild
before_build:
- - cmd: mkdir c:\projects\platform_folders\build
- - cmd: cd c:\projects\platform_folders\build
+ - cmd: mkdir "%APPVEYOR_BUILD_FOLDER%"\build
+ - cmd: cd "%APPVEYOR_BUILD_FOLDER%"\build
# I know this is ugly, but the matrix didn't work, and newlines seem to not be supported
- - cmd: IF %APPVEYOR_BUILD_WORKER_IMAGE%=="Visual Studio 2015" (IF %PLATFORM%=="x86" (cmake -G "Visual Studio 14 2015" ..) ELSE (cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ..)) ELSE (IF %PLATFORM%=="x86" (cmake -G "Visual Studio 15 2017" ..) ELSE (cmake -G "Visual Studio 15 2017 Win64" -T host=x64 ..))
+ - cmd: IF "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (IF "%PLATFORM%"=="x86" (cmake -G "Visual Studio 14 2015" ..) ELSE (cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ..)) ELSE (IF "%PLATFORM%"=="x86" (cmake -G "Visual Studio 15 2017" ..) ELSE (cmake -G "Visual Studio 15 2017 Win64" -T host=x64 ..))
-# Runs MSBuild.exe with logging & some options
-build:
- # Allows for faster builds
- parallel: true
- # The solution file is the name of the project() given to Cmake
- project: platform_folders.sln
- # Trust me, you don't want higher than minimal. Even this is spammy
- verbosity: minimal
+# CMake generates the platform as "Win32" instead of "x86" when building 32-bit
+# but 64-bit is "x64"
+build_script:
+ - cmd: IF "%PLATFORM%"=="x86" (MSBuild.exe "%APPVEYOR_BUILD_FOLDER%"\build\platform_folders.sln /p:Configuration="%CONFIGURATION%" /p:Platform="Win32" /v:minimal /m /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll") ELSE (MSBuild.exe "%APPVEYOR_BUILD_FOLDER%"\build\platform_folders.sln /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" /v:minimal /m /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll")
#---------------------------------#
# tests configuration #
@@ -67,7 +63,7 @@ build:
# to run your custom scripts instead of automatic tests
# The %CONFIGURATION% and %PLATFORM% variables are set from Appveyor as env-vars
test_script:
- - cmd: MSBuild.exe /p:Configuration=%CONFIGURATION% /p:Platform=%PLATFORM% /v:minimal RUN_TESTS.vcxproj
+ - cmd: MSBuild.exe /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" /v:minimal "%APPVEYOR_BUILD_FOLDER%"\build\RUN_TESTS.vcxproj
#---------------------------------#
# global handlers #
@@ -75,4 +71,4 @@ test_script:
# on build failure dump cmake err log
on_failure:
- - cmd: type c:\projects\platform_folders\build\CMakeFiles\CMakeError.log
+ - cmd: IF exist "%APPVEYOR_BUILD_FOLDER%"\build\CMakeFiles\CMakeError.log (type "%APPVEYOR_BUILD_FOLDER%"\build\CMakeFiles\CMakeError.log)