Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

postBuild.bat の処理内容を更新 #336

Merged
merged 1 commit into from
Aug 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions appveyor.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
- [preBuild.bat の構造](#prebuildbat-の構造)
- [生成する環境変数](#生成する環境変数)
- [処理の流れ](#処理の流れ)
- [postBuild.bat の構造](#postbuildbat-の構造)
- [処理の流れ](#処理の流れ-1)
- [zipArtifacts.bat の構造](#zipartifactsbat-の構造)
- [生成する環境変数](#生成する環境変数-1)
- [処理の流れ](#処理の流れ-1)
- [処理の流れ](#処理の流れ-2)

<!-- /TOC -->

Expand Down Expand Up @@ -73,7 +75,7 @@
- HeaderMake.exe : Funccode_define.h, Funccode_enum.h を生成する
- MakefileMake.exe : Makefile を更新する (MinGW 用)
- git.exe : git や appveyor 関連の情報を githash.h に出力する
- [sakura\postBuild.bat](sakura/postBuild.bat) : 何もしない
- [sakura\postBuild.bat](sakura/postBuild.bat) : bregonig.dll のコピー
- [parse-buildlog.bat](parse-buildlog.bat) : ビルドログを解析する
- [appveyor_env.py](appveyor_env.py)
- [parse-buildlog.py](parse-buildlog.py)
Expand All @@ -95,7 +97,7 @@
|build-all.bat | platform ("Win32" または "x64") | configuration ("Debug" または "Relelase)" |
|build-sln.bat | platform ("Win32" または "x64") | configuration ("Debug" または "Relelase)" |
|sakura\preBuild.bat | HeaderMake.exe または MakefileMake.exe の実行ファイルのフォルダパス | なし |
|sakura\postBuild.bat| なし | なし |
|sakura\postBuild.bat| platform ("Win32" または "x64") | configuration ("Debug" または "Relelase)" |
|parse-buildlog.bat | msbuild のビルドログパス | なし |
|build-chm.bat | なし | なし |
|build-installer.bat | platform ("Win32" または "x64") | configuration ("Debug" または "Relelase)" |
Expand Down Expand Up @@ -148,6 +150,12 @@
| APPVEYOR_BUILD_URL |APPVEYOR_BUILD_URL |文字列 |


### postBuild.bat の構造

#### 処理の流れ

* 直接リポジトリに登録している bregonig.dll を sakura.exe のビルドの出力先にコピーする

### zipArtifacts.bat の構造

#### 生成する環境変数
Expand Down