Skip to content

Commit

Permalink
disable appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
rclark committed Feb 5, 2015
1 parent 36439a9 commit aee2e0e
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions appveyor.yml
Expand Up @@ -14,27 +14,27 @@ environment:
shallow_clone: true

install:
# find and remove default node.exe to avoid conflicts
- node -e "console.log(process.execPath)" > node_path.txt
- SET /p NODE_EXE_PATH=<node_path.txt
- del node_path.txt
- del /q /s "%NODE_EXE_PATH%"
# add local node to path (since we install it for msvs_toolset == 14)
- SET PATH=%CD%;%PATH%;
- SET ARCHPATH=
- if %platform% == x64 (SET ARCHPATH=x64/)
- if "%msvs_toolset%" == "12" powershell Install-Product node $env:nodejs_version $env:platform
- if "%msvs_toolset%" == "14" powershell Write-Output "fetching https://mapbox.s3.amazonaws.com/node-cpp11/v$env:nodejs_version/${env:ARCHPATH}node.exe"
- if "%msvs_toolset%" == "14" powershell Start-FileDownload "https://mapbox.s3.amazonaws.com/node-cpp11/v$env:nodejs_version/${env:ARCHPATH}node.exe"
- powershell Write-Output "https://mapbox.s3.amazonaws.com/node-cpp11/vcredist_$env:platform.exe"
- powershell Start-FileDownload "https://mapbox.s3.amazonaws.com/node-cpp11/vcredist_$env:platform.exe"
- .\vcredist_%platform%.exe /q /norestart
- node -v
- node -e "console.log(process.argv,process.execPath,process.arch)"
- npm -v
- if "%msvs_toolset%" == "12" npm install --fallback-to-build=false
- if "%msvs_toolset%" == "14" npm install --fallback-to-build=false --toolset=v140
- npm test
# # find and remove default node.exe to avoid conflicts
# - node -e "console.log(process.execPath)" > node_path.txt
# - SET /p NODE_EXE_PATH=<node_path.txt
# - del node_path.txt
# - del /q /s "%NODE_EXE_PATH%"
# # add local node to path (since we install it for msvs_toolset == 14)
# - SET PATH=%CD%;%PATH%;
# - SET ARCHPATH=
# - if %platform% == x64 (SET ARCHPATH=x64/)
# - if "%msvs_toolset%" == "12" powershell Install-Product node $env:nodejs_version $env:platform
# - if "%msvs_toolset%" == "14" powershell Write-Output "fetching https://mapbox.s3.amazonaws.com/node-cpp11/v$env:nodejs_version/${env:ARCHPATH}node.exe"
# - if "%msvs_toolset%" == "14" powershell Start-FileDownload "https://mapbox.s3.amazonaws.com/node-cpp11/v$env:nodejs_version/${env:ARCHPATH}node.exe"
# - powershell Write-Output "https://mapbox.s3.amazonaws.com/node-cpp11/vcredist_$env:platform.exe"
# - powershell Start-FileDownload "https://mapbox.s3.amazonaws.com/node-cpp11/vcredist_$env:platform.exe"
# - .\vcredist_%platform%.exe /q /norestart
# - node -v
# - node -e "console.log(process.argv,process.execPath,process.arch)"
# - npm -v
# - if "%msvs_toolset%" == "12" npm install --fallback-to-build=false
# - if "%msvs_toolset%" == "14" npm install --fallback-to-build=false --toolset=v140
# - npm test

build: OFF
test: OFF
Expand Down

0 comments on commit aee2e0e

Please sign in to comment.