build_and_deploy_downloader.ymlにworkflow_callを追加 #606
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
内容
ダウンローダーのビルドとデプロイ用のスクリプトを関数化(
workflow_call
)し、全部ビルドしてデプロイする用のスクリプトから呼び出せるようにしました。こちらで言及していた内容(本体をビルドしないとダウンローダーの実行テストができない)を解決するための前準備みたいなプルリクエストです。- C API用のzipファイルからmodelディレクトリをなくし、別でmodelダウンロード可能にする #603 (comment)
コメントしていますが、勘違いでした。。関連 Issue
その他
上のプルリクエストのコメントでは
workflow_dispatch
を消してworkflow_call
だけにしようと思っていたのですが、やっぱりディスパッチできた方が単体でテストできて便利そうなので一旦残してみました。というのも面倒だったのがdispatch用の
github.event.inputs
とcall用のinputs
の2つの変数をどちらも見れるようにしないといけないと思っていたのですが、どうやらinputs
で統一できるようになっていたので思ったより簡単だったという理由があります。https://developer.mamezou-tech.com/blogs/2022/06/11/github-actions-inputs-unified/
他のリポジトリもこうして行きたいかもです。