Skip to content

Commit

Permalink
Implemented Windows x64 and x86 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
StiviiK committed Jun 22, 2017
1 parent cd45ef9 commit 61032fd
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,33 @@ before_build:

clone_depth: 1

platform:
- Win32
- x64

build:
parallel: true
project: Build/PathFind.sln

after_build:
- ps: |
if($env:PLATFORM -eq 'x64') {
$env:NAME = 'ml_pathfind_x64.dll'
} else {
$env:NAME = 'ml_pathfind_x86.dll'
}
mv Bin/Release/ml_pathfind.dll Bin/Release/$env:NAME
artifacts:
- path: Bin/Release/ml_pathfind.dll
name: ml_pathfind.dll
- path: Bin/Release/$(NAME)
name: "ml_pathfind"

deploy:
description: 'Pathfind module release'
provider: GitHub
auth_token:
secure: gUShV8myZZHnM6U/HmGkJmtKslpUMglLZoeMPTyMbwNBNskDk0wQ/1HRMoYakQ7A
artifact: Bin/Release/ml_pathfind.dll
artifact: "ml_pathfind"
draft: false
prerelease: false
on:
Expand Down

0 comments on commit 61032fd

Please sign in to comment.