Browse Subversion Repository
Contents of /trunk/ci_scripts/appveyor_vs2019_bat.yml
Parent Directory
| Revision Log
| 1 |
image: Visual Studio 2019 |
| 2 |
|
| 3 |
environment: |
| 4 |
APPVEYOR_SAVE_CACHE_ON_ERROR: true |
| 5 |
VS_VERSION: 2019 |
| 6 |
|
| 7 |
build: off |
| 8 |
|
| 9 |
init: |
| 10 |
# タイムゾーンを JST に変更 |
| 11 |
- tzutil /s "Tokyo Standard Time" |
| 12 |
# c:\cygwin64 の Cygwin に cmake をインストール |
| 13 |
# このコマンドではインストール済みパッケージは更新されない |
| 14 |
- c:\cygwin64\setup-x86_64.exe --quiet-mode --packages cmake |
| 15 |
|
| 16 |
cache: |
| 17 |
- libs |
| 18 |
|
| 19 |
build_script: |
| 20 |
- ci_scripts/build_appveyor_release_bat.bat |
| 21 |
- ci_scripts/build_appveyor_release_bat_pre_cache.bat |
| 22 |
|
| 23 |
artifacts: |
| 24 |
- path: installer/Output/*.exe |
| 25 |
- path: installer/Output/*.zip |
| 26 |
|
| 27 |
on_success: |
| 28 |
- ci_scripts\notify.bat success |
| 29 |
on_failure: |
| 30 |
- ci_scripts\notify.bat failure |
| 31 |
on_finish: |
| 32 |
# ビルド完了後に RDP が有効になる。blockRdp を指定しているので、完了後にも終了しない。 |
| 33 |
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) |
|