-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #642 from KAMONOHASHI/master
4.0.2リリースのためのマージ
- Loading branch information
Showing
72 changed files
with
4,750 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,31 @@ | ||
# リリース手順 | ||
## リリースするソースコードの指定 | ||
* GitHubでバージョン名リリースを作成(テストが終わるまでプレリリース) | ||
* 例: 1.0.1 | ||
* git fetch upstream && git merge upstream/(バージョンブランチ) を実行 | ||
* 例: git merge upstream/1.0 | ||
## コンテナのビルド & リリース | ||
* build-docker/build.shの実行 | ||
* docker loginでDockerHubにログイン | ||
* build-docker/push.shの実行 | ||
## Python Packageのビルド & リリース | ||
* build-pypi/setup.sh build の実行 | ||
* PyPiにログイン | ||
* build-pypi/setup.sh test-upload の実行 | ||
* pip installの確認 | ||
* build-pypi/setup.sh master-upload の実行 | ||
|
||
# developリリース | ||
* tagをつけずに`build-docker/build.sh`を実行するとdevelopタグでコンテナが作られる | ||
# リリース手順 | ||
|
||
## リリースするソースコードの指定 | ||
|
||
- GitHub でバージョン名リリースを作成(テストが終わるまでプレリリース) | ||
- 例: 1.0.1 | ||
- git fetch upstream && git merge upstream/(バージョンブランチ) を実行 | ||
- 例: git merge upstream/1.0 | ||
|
||
## コンテナのビルド & リリース | ||
|
||
- build-docker/build.sh の実行 | ||
- docker login で DockerHub にログイン | ||
- build-docker/push.sh の実行 | ||
|
||
## Python Package のビルド & リリース | ||
|
||
- build-pypi/setup.sh build の実行 | ||
- PyPi にログイン | ||
- build-pypi/setup.sh test-upload の実行 | ||
- pip install の確認 | ||
- build-pypi/setup.sh master-upload の実行 | ||
|
||
# develop リリース | ||
|
||
- tag をつけずに`build-docker/build.sh`を実行すると develop タグでコンテナが作られる | ||
|
||
# Notebook Image のビルド & リリース | ||
|
||
ノートブック機能のデフォルトイメージを作成するための Dockerfile が`build-notebook-image`に配置されている。 | ||
毎回のリリースごとには実施せず、Python のマイナーバージョンのサポート終了や、コンテナ内で利用するパッケージに破壊的な変更が入った場合等にリリースを行う。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM tensorflow/tensorflow:2.9.0-gpu | ||
|
||
RUN pip install --upgrade pip \ | ||
&& pip install jupyterlab \ | ||
&& pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu113 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
web-api/platypus/platypus/ApiModels/AccountApiModels/DisplayNameInputModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
|
||
namespace Nssol.Platypus.ApiModels.AccountApiModels | ||
{ | ||
public class DisplayNameInputModel | ||
{ | ||
/// <summary> | ||
/// ユーザ表示名 | ||
/// </summary> | ||
public string DisplayName { get; set; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.