Skip to content

Commit

Permalink
fix: add missing rhel builds for ngc images
Browse files Browse the repository at this point in the history
Follow-up of #297: looks like I've missed adding the new RHEL9 driver
builds for images pushed to NGC. This MR adds the missing builds. I've
followed the same pattern as for RHEL8, so new builds are added for each
of the minor releases of RHEL9 (9.0, 9.1, 9.2, 9.3).
  • Loading branch information
nobbs authored and shivamerla committed Mar 25, 2024
1 parent f18cc79 commit ef92ac6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .nvidia-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -409,3 +409,31 @@ release:ngc-rhel8.9:
- .dist-rhel8
variables:
OUT_DIST: "rhel8.9"

release:ngc-rhel9.0:
extends:
- .release:ngc
- .dist-rhel9
variables:
OUT_DIST: "rhel9.0"

release:ngc-rhel9.1:
extends:
- .release:ngc
- .dist-rhel9
variables:
OUT_DIST: "rhel9.1"

release:ngc-rhel9.2:
extends:
- .release:ngc
- .dist-rhel9
variables:
OUT_DIST: "rhel9.2"

release:ngc-rhel9.3:
extends:
- .release:ngc
- .dist-rhel9
variables:
OUT_DIST: "rhel9.3"

0 comments on commit ef92ac6

Please sign in to comment.