forked from ROCm/TheRock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublish_no_rocm_image_ubuntu24_04.yml
More file actions
40 lines (37 loc) · 1.32 KB
/
Copy pathpublish_no_rocm_image_ubuntu24_04.yml
File metadata and controls
40 lines (37 loc) · 1.32 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
# 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