Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/ci_scripts/appveyor_release_bat.yml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10982 - (show annotations) (download)
Mon Oct 9 23:56:58 2023 UTC (6 months ago) by nmaya
File size: 1099 byte(s)
AppVeyor のコメントを修正
1 image: Visual Studio 2022
2
3 environment:
4 # キャッシュを使わない
5 # APPVEYOR_SAVE_CACHE_ON_ERROR: true
6 VS_VERSION: 2022
7
8 build: off
9
10 init:
11 # タイムゾーンを JST に変更
12 - tzutil /s "Tokyo Standard Time"
13 # c:\cygwin64 の Cygwin に cmake をインストール
14 # このコマンドではインストール済みパッケージは更新されない
15 - c:\cygwin64\setup-x86_64.exe --quiet-mode --packages cmake
16
17 # キャッシュを使わない
18 # cache:
19 # - libs
20
21 build_script:
22 - ci_scripts/build_appveyor_release_bat.bat
23 # - ci_scripts/build_appveyor_release_bat_pre_cache.bat
24
25 artifacts:
26 - path: installer/Output/*.exe
27 - path: installer/Output/*.zip
28
29 on_success:
30 # - ci_scripts\notify.bat success
31 on_failure:
32 # - ci_scripts\notify.bat failure
33 on_finish:
34 # ビルド完了後に RDP が有効になる。blockRdp を指定しているので、完了後にも終了しない。
35 # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26