forked from mike-foster/npp-session-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added appveyor.yml with preparation for automatic github deloyment,…
… just release builds are possible by available nmake makefile - updated npp include files to v3.1 from https://github.com/npp-plugins/plugintemplate, modified PluginInterface.h to include menuCmdID.h as before - changed makefile for x64 build - updated bufferid references from INT -> LRESULT - fixed issue https://notepad-plus-plus.org/community/topic/12558/session-manager-issue by usage of fix from https://github.com/pnedev/npp-session-manager - update vesion to 1.4.3 for release
- Loading branch information
Showing
11 changed files
with
271 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
version: 1.4.3.{build} | ||
image: Visual Studio 2017 | ||
|
||
environment: | ||
matrix: | ||
- PlatformToolset: v140_xp | ||
#- PlatformToolset: v141_xp | ||
|
||
platform: | ||
- x64 | ||
- x86 | ||
|
||
configuration: | ||
- Release | ||
#- Debug | ||
|
||
install: | ||
- if "%platform%"=="x64" set archi=amd64 | ||
- if "%platform%"=="x86" set archi=x86 | ||
- if "%PlatformToolset%"=="v140_xp" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %archi% | ||
- if "%PlatformToolset%"=="v141_xp" call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %archi% | ||
|
||
build_script: | ||
- cd "%APPVEYOR_BUILD_FOLDER%" | ||
- nmake | ||
|
||
after_build: | ||
- cd "%APPVEYOR_BUILD_FOLDER%" | ||
- ps: >- | ||
Push-AppveyorArtifact "obj\SessionMgr.dll" -FileName SessionMgr.dll | ||
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v140_xp") { | ||
$ZipFileName = "SessionMgr_$($env:APPVEYOR_REPO_TAG_NAME)_$env:PLATFORM.zip" | ||
7z a $ZipFileName "$($env:APPVEYOR_BUILD_FOLDER)\obj\SessionMgr.dll" | ||
7z a $ZipFileName "$($env:APPVEYOR_BUILD_FOLDER)\doc" | ||
} | ||
artifacts: | ||
- path: SessionMgr_*.zip | ||
name: releases | ||
|
||
deploy: | ||
provider: GitHub | ||
auth_token: | ||
secure: PhNXrhw03Z0rJZssX/UYyoIofw669wU1GBy/hGq+WJPCXd7mbxDu6Il32Rx0LBH6 | ||
artifact: releases | ||
draft: false | ||
prerelease: false | ||
force_update: true | ||
on: | ||
appveyor_repo_tag: true | ||
PlatformToolset: v140_xp | ||
configuration: Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.