File: appveyor.yml

package info (click to toggle)
sentencepiece 0.1.95-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 48,820 kB
  • sloc: cpp: 182,738; python: 768; xml: 231; sh: 228; perl: 198; pascal: 50; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 845 bytes parent folder | download
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
version: '{branch} build {build}'
image: Visual Studio 2019
platform:
  - x64
  - Win32
configuration: Release
clone_depth: 50
clone_folder: c:\projects\sentencepiece
#init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
build_script:
- cmd: call test.bat %platform%
artifacts:
 - path: build\sentencepiece*.7z
 - path: python\dist\*.whl
deploy:
  description: 'SentencePiece Windows release'
  provider: GitHub
  auth_token:
    secure: Aq4jHo/HY6WFFKs1h9cCWfi3U4ZsVTooUEhtgBfcJM6SUhnZdPVazIcKCtiR32kc
  draft: false
  prerelease: false
  on:
    branch: master
    appveyor_repo_tag: true