-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathpublish_no_rocm_image_ubuntu24_04.yml
More file actions
58 lines (55 loc) · 2.2 KB
/
Copy pathpublish_no_rocm_image_ubuntu24_04.yml
File metadata and controls
58 lines (55 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright Advanced Micro Devices, Inc.
# SPDX-License-Identifier: MIT
name: Publish no_rocm_image_ubuntu24_04 images
on:
workflow_dispatch:
push:
branches:
- 'main'
- 'stage/docker/**'
paths:
- dockerfiles/no_rocm_image_ubuntu24_04*.Dockerfile
- .github/workflows/publish_no_rocm_image_ubuntu24_04.yml
permissions:
contents: read
packages: write
jobs:
publish_no_rocm_image_ubuntu24_04:
uses: ./.github/workflows/publish_dockerfile.yml
with:
DOCKER_FILE_NAME: no_rocm_image_ubuntu24_04
DOCKER_IMAGE_NAME: no_rocm_image_ubuntu24_04
# The image no_rocm_image_ubuntu24_04_rocgdb is an extension of
# no_rocm_image_ubuntu24_04, so make sure we rebuild the _rocgdb
# version whenever the base version changes.
publish_no_rocm_image_ubuntu24_04_rocgdb:
needs: [publish_no_rocm_image_ubuntu24_04]
uses: ./.github/workflows/publish_dockerfile.yml
with:
DOCKER_FILE_NAME: no_rocm_image_ubuntu24_04_rocgdb
DOCKER_IMAGE_NAME: no_rocm_image_ubuntu24_04_rocgdb
# image used in ocltst execution
publish_no_rocm_image_ubuntu24_04_ocl_rt:
needs: [publish_no_rocm_image_ubuntu24_04]
uses: ./.github/workflows/publish_dockerfile.yml
with:
DOCKER_FILE_NAME: no_rocm_image_ubuntu24_04_ocl_rt
DOCKER_IMAGE_NAME: no_rocm_image_ubuntu24_04_ocl_rt
# The image no_rocm_image_ubuntu24_04_media is an extension of
# no_rocm_image_ubuntu24_04, so make sure we rebuild the _media
# version whenever the base version changes.
publish_no_rocm_image_ubuntu24_04_media:
needs: [publish_no_rocm_image_ubuntu24_04]
uses: ./.github/workflows/publish_dockerfile.yml
with:
DOCKER_FILE_NAME: no_rocm_image_ubuntu24_04_media
DOCKER_IMAGE_NAME: no_rocm_image_ubuntu24_04_media
# The image no_rocm_image_ubuntu24_04_openmpi is an extension of
# no_rocm_image_ubuntu24_04, so make sure we rebuild the _openmpi
# version whenever the base version changes.
publish_no_rocm_image_ubuntu24_04_openmpi:
needs: [publish_no_rocm_image_ubuntu24_04]
uses: ./.github/workflows/publish_dockerfile.yml
with:
DOCKER_FILE_NAME: no_rocm_image_ubuntu24_04_openmpi
DOCKER_IMAGE_NAME: no_rocm_image_ubuntu24_04_openmpi