forked from IsraelHikingMap/Site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (25 loc) · 813 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: 5.2.{build}
image: Visual Studio 2017
configuration: Release
install:
- ps: >-
Install-Product node 8.9
node -v
npm -v
npm install -g npm@5.2.0 --loglevel=error
npm install -g @angular/cli@1.5.5 --loglevel=error
before_build:
- ps: dotnet restore
- ps: (Get-Content $env:appdata\npm\ng.cmd).Replace("node ", "node --max-old-space-size=2048 ") | Set-Content $env:appdata\npm\ng.cmd
build:
project: IsraelHiking.sln
parallel: true
verbosity: minimal
after_test:
- ps: >-
$PostBuildTests = "$env:APPVEYOR_BUILD_FOLDER\Scripts\PostBuildTests.ps1"
Write-Host $PostBuildTests
& "$PostBuildTests"
$PostBuildPackArtifacts = "$env:APPVEYOR_BUILD_FOLDER\Scripts\PostBuildPackArtifacts.ps1"
Write-Host $PostBuildPackArtifacts
& "$PostBuildPackArtifacts"