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

Add windows cpp sample #112

Merged
merged 24 commits into from
Apr 14, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d8d3b0a
ソシューション追加
Apr 1, 2022
57ad5ad
voicevox_load_openjtalk_dictまで作成
Apr 1, 2022
e79a80e
整形
Apr 2, 2022
b87a616
音声生成と再生の実装
Apr 2, 2022
6401dd0
初期化コメントをコンソール画面出力へ変更
Apr 2, 2022
c798380
メモリ解放を忘れていたので追加
Apr 2, 2022
9f8c60e
Windows C++README.mdを追加
shigobu Apr 6, 2022
0e4c86f
OnnxRuntimeのバージョンを1.10.0に変更
Apr 6, 2022
fee5dc1
Merge branch 'add_windows_cpp_sample' of https://github.com/shigobu/v…
Apr 6, 2022
7bd1df2
マージされたのでREADME.mdの更新
Apr 7, 2022
da2b1d3
サンプルをビルドするワークフロー追加
Apr 11, 2022
4474f7f
手動実行できるように変更
Apr 11, 2022
f7af5b7
ファイル名変更
Apr 11, 2022
69a3c3d
build.ymlへ書いてみた
Apr 11, 2022
f8c5999
Copyのパス修正
Apr 11, 2022
955019f
ダウンロードしたファイルのパスを確認するコードを入力
Apr 11, 2022
9b72394
Copy元を変数を使用するように変更
Apr 11, 2022
dde5b89
Merge branch 'main' into msbuild_test
Apr 11, 2022
4018d68
mkdir追加
Apr 11, 2022
a60af11
個別ビルドymlを削除
Apr 11, 2022
576cabb
音声データをファイルに出力する処理の追加
Apr 11, 2022
fc45791
リリース作成後にサンプルビルドするように変更
Apr 12, 2022
c1669db
やっぱり、リリース作成と並列で動作するように戻す
Apr 12, 2022
1676c6b
Merge branch 'msbuild_test' into add_windows_cpp_sample
Apr 12, 2022
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
Prev Previous commit
Next Next commit
Copy元を変数を使用するように変更
kasamatsu committed Apr 11, 2022
commit 9b723948bb95f1270c16fa0d54ded63bf351826c
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -409,11 +409,8 @@ jobs:
name: windows-x64-cpu-cpp-shared
path: artifacts\

- name: 'Echo download path'
run: echo ${{steps.download.outputs.download-path}}

- name: Copy core.lib
run: copy artifacts\windows-x64-cpu-cpp-shared\core.lib example\cpp\windows\simple_tts\lib\x64
run: copy ${{steps.download.outputs.download-path}}\core.lib example\cpp\windows\simple_tts\lib\x64

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}