Skip to content

Commit d9c7ec9

Browse files
committed
[no-relnote] Don't refer to target image distribution
Signed-off-by: Evan Lezar <elezar@nvidia.com>
1 parent 614e469 commit d9c7ec9

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ jobs:
7979
runs-on: ubuntu-latest
8080
strategy:
8181
matrix:
82-
dist:
83-
- ubi9
82+
target:
83+
- application
8484
- packaging
8585
needs: packages
8686
steps:
@@ -117,4 +117,4 @@ jobs:
117117
BUILD_MULTI_ARCH_IMAGES: ${{ inputs.build_multi_arch_images }}
118118
run: |
119119
echo "${VERSION}"
120-
make -f deployments/container/Makefile build-${{ matrix.dist }}
120+
make -f deployments/container/Makefile build-${{ matrix.target }}

deployments/container/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ OUT_IMAGE_TAG = $(OUT_IMAGE_VERSION)
3838
OUT_IMAGE = $(OUT_IMAGE_NAME):$(OUT_IMAGE_TAG)
3939

4040
##### Public rules #####
41-
DEFAULT_PUSH_TARGET := ubi9
41+
DEFAULT_PUSH_TARGET := application
4242
DISTRIBUTIONS := $(DEFAULT_PUSH_TARGET)
4343

4444
META_TARGETS := packaging
@@ -102,8 +102,6 @@ build: build-$(DEFAULT_PUSH_TARGET)
102102
push: push-$(DEFAULT_PUSH_TARGET)
103103

104104
# Test targets
105-
test-%: DIST = $(*)
106-
107105
TEST_CASES ?= docker crio containerd
108106
$(TEST_TARGETS): test-%:
109107
TEST_CASES="$(TEST_CASES)" bash -x $(CURDIR)/test/container/main.sh run \

0 commit comments

Comments
 (0)