forked from 3846masa/upload-gphotos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
executable file
·77 lines (65 loc) · 1.98 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
branches:
only:
- /v[\d\.]+/
os: Visual Studio 2015
environment:
nodejs_version: "6"
platform:
- x86
- x64
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform;
- ps: $env:Path += ";$(pwd)\node_modules\.bin";
- ps: >
@{
"nodejs_version" = $env:nodejs_version
"platform" = $env:platform
"node binary version" = $(node -v)
"node platform@arch" = $(node -p 'process.platform + process.arch')
"npm version" = $(npm -v)
"APPVEYOR_REPO_COMMIT_MESSAGE" = $env:APPVEYOR_REPO_COMMIT_MESSAGE
"git latest tag" = "$(git describe --tags --always HEAD)"
"appveyor_repo_tag" = $env:appveyor_repo_tag
} | Out-String | Write-Host;
# work around bug in npm 2.15.1 where checksums were coming back bad (node 0.12)
- ps: >
npm install -g npm@3 | Write-Host;
npm -v | Write-Host;
# Check if we're building the latest tag, if so
# then we publish the binaries if tests pass.
- ps: >
if ($env:appveyor_repo_tag -match "true" -and ("$(git describe --tags --always HEAD)" -eq $env:appveyor_repo_tag_name)) {
$env:publish_binary = 1;
} else {
$env:publish_binary = 0;
}
true;
- ps: >
if ($env:publish_binary -eq 1) {
"We're publising a binary!" | Write-Host
} else {
"We're not publising a binary" | Write-Host
}
true;
# Cleanup the output of npm
- ps: >
npm config set progress false
npm config set spin false
build_script:
- npm install --msvs_version=2015
test_script:
- npm run build
after_test:
- 7z a upload-gphotos-windows-%PLATFORM%.zip %APPVEYOR_BUILD_FOLDER%\upload-gphotos.exe
artifacts:
- path: upload-gphotos-*.zip
name: Releases
deploy:
provider: GitHub
auth_token:
secure: "UUvf5tcoiri8wJ8mDNI/VimEyxRe9Wg6ahiJjwwA5YmpyjrU6FAgSRzui4T971tL"
artifact: /upload-gphotos-.*\.zip/
draft: false
prerelease: false
on:
appveyor_repo_tag: true