Skip to content

Commit

Permalink
Make Node 8 Windows Bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed May 31, 2017
1 parent 3277fb2 commit 87315e7
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions appveyor.yml
Expand Up @@ -114,6 +114,7 @@

platform:
- x86
- x64

version: "{build}"

Expand All @@ -133,21 +134,6 @@
environment:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
matrix:
- nodejs_version: 0.10
GYP_MSVS_VERSION: 2013
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- nodejs_version: 0.12
GYP_MSVS_VERSION: 2013
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- nodejs_version: 4
GYP_MSVS_VERSION: 2013
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- nodejs_version: 6
GYP_MSVS_VERSION: 2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- nodejs_version: 7
GYP_MSVS_VERSION: 2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
- nodejs_version: 8
GYP_MSVS_VERSION: 2015
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
Expand All @@ -161,3 +147,14 @@
test_script:
- ps: set-location -path c:\projects\node_modules\node-sass
- npm test
- ps: >-
Get-ChildItem .\vendor\**\*.node | % {
( $BindingName = $_.FullName ).Split('\\') |
Select-Object -Last 2 | Select-Object -First 1 } |
.{ process { (
@( $BindingName,
( ( $_, "binding.node" ) -join '_' ) ),
@( ".\build\Release\binding.pdb",
( ( $_, "binding.pdb" ) -join '_' ) )
) } } | % { Push-AppveyorArtifact $_[0] -FileName $_[1] }

0 comments on commit 87315e7

Please sign in to comment.