File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -191,8 +191,14 @@ jobs:
191
191
192
192
# ここで download した whl ファイルの動作を確認する
193
193
- run : |
194
- uv pip install dist/sora_sdk-${{ steps.get_version.outputs.version }}-cp${{ matrix.version.pkg }}-cp${{ matrix.version.pkg }}-${{ matrix.platform.pytag }}.whl
195
- uv run python3 -c "import sora_sdk; print(sora_sdk.get_video_codec_capability().to_json())"
194
+ # 一時ディレクトリで仮想環境を作成してテスト
195
+ TMPDIR=$(mktemp -d)
196
+ cd $TMPDIR
197
+ uv venv --python ${{ matrix.version.python }}
198
+ uv pip install $GITHUB_WORKSPACE/dist/sora_sdk-${{ steps.get_version.outputs.version }}-cp${{ matrix.version.pkg }}-cp${{ matrix.version.pkg }}-${{ matrix.platform.pytag }}.whl
199
+ uv run python -c "import sora_sdk; print(sora_sdk.get_video_codec_capability().to_json())"
200
+ cd $GITHUB_WORKSPACE
201
+ rm -rf $TMPDIR
196
202
197
203
build_ubuntu_arm :
198
204
strategy :
You can’t perform that action at this time.
0 commit comments