Skip to content

Commit f4853b6

Browse files
authored
ci: Add all recent buildcaches to update-buildcache job (#13289)
* ci: Update buildcache Signed-off-by: oliver könig <[email protected]> * f Signed-off-by: oliver könig <[email protected]> * f Signed-off-by: oliver könig <[email protected]> * include all images Signed-off-by: oliver könig <[email protected]> --------- Signed-off-by: oliver könig <[email protected]>
1 parent 6107266 commit f4853b6

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.github/workflows/update-buildcache.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
LAST_PRS=$(gh api graphql -f query='
6565
query {
6666
repository(owner: "NVIDIA", name: "NeMo") {
67-
pullRequests(states: MERGED, first: 10, orderBy: {field: UPDATED_AT, direction: DESC}) {
67+
pullRequests(states: MERGED, first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
6868
nodes {
6969
number
7070
}
@@ -81,9 +81,23 @@ jobs:
8181
cicd-test-container-build:
8282
needs: [pre-flight]
8383
uses: NVIDIA/NeMo-FW-CI-templates/.github/workflows/[email protected]
84+
strategy:
85+
fail-fast: false
86+
matrix:
87+
include:
88+
- dockerfile: Dockerfile.ci
89+
image-name: nemo_container_automodel
90+
- dockerfile: Dockerfile.ci
91+
image-name: nemo_container_nemo2
92+
- dockerfile: Dockerfile.ci
93+
image-name: nemo_container_speech
94+
- dockerfile: Dockerfile.ci
95+
image-name: nemo_container
96+
- dockerfile: Dockerfile.ci.export_deploy
97+
image-name: nemo_container_export_deploy
8498
with:
85-
image-name: nemo_container
86-
dockerfile: Dockerfile.ci
99+
image-name: ${{ matrix.image-name }}
100+
dockerfile: ${{ matrix.dockerfile }}
87101
image-label: nemo-core
88102
build-args: |
89103
IMAGE_LABEL=nemo-core
@@ -94,5 +108,5 @@ jobs:
94108
use-inline-cache: false
95109
prune-filter-timerange: 24h
96110
cache-from: |
97-
nemoci.azurecr.io/$IMAGE_NAME-buildcache:main
111+
nemoci.azurecr.io/${{ matrix.image-name }}-buildcache:main
98112
${{ needs.pre-flight.outputs.cache-from }}

0 commit comments

Comments
 (0)