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

Ubuntu 22.04ベースのDockerイメージを追加する #1495

Merged
merged 9 commits into from
Dec 1, 2024
15 changes: 15 additions & 0 deletions .github/workflows/build-engine-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
- cpu-ubuntu20.04
- nvidia
- nvidia-ubuntu20.04
- cpu-ubuntu22.04
- nvidia-ubuntu22.04
include:
# Ubuntu 20.04
- tag: ""
Expand Down Expand Up @@ -78,6 +80,19 @@ jobs:
base_runtime_image: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu20.04
onnxruntime_version: 1.13.1
platforms: linux/amd64
# Ubuntu 22.04
- tag: cpu-ubuntu22.04
target: runtime-env
base_image: ubuntu:22.04
base_runtime_image: ubuntu:22.04
onnxruntime_version: 1.13.1
platforms: linux/amd64,linux/arm64/v8
- tag: nvidia-ubuntu22.04
target: runtime-nvidia-env
base_image: ubuntu:22.04
base_runtime_image: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
onnxruntime_version: 1.13.1
platforms: linux/amd64

steps:
- name: <Setup> Check out the repository
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-engine-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- ""
- cpu
- cpu-ubuntu20.04
- cpu-ubuntu22.04

steps:
- name: <Setup> Check out the repository
Expand Down