Skip to content

Commit fbdba96

Browse files
authored
feat: A small set of CI updates (#176)
* Added linux/arm64 build and tag of latest Signed-off-by: Shmuel Kallner <kallner@il.ibm.com> * Added additional help in the Makefile Signed-off-by: Shmuel Kallner <kallner@il.ibm.com> --------- Signed-off-by: Shmuel Kallner <kallner@il.ibm.com>
1 parent 2067b4d commit fbdba96

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/actions/docker-build-and-push/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ runs:
3333
- name: Build image and push
3434
run: |
3535
docker buildx build \
36-
--platform linux/amd64 \
36+
--platform linux/amd64,linux/arm64 \
3737
-t ${{ inputs.registry }}/${{ inputs.image-name }}:${{ inputs.tag }} \
38+
-t ${{ inputs.registry }}/${{ inputs.image-name }}:latest \
3839
--push .
3940
shell: bash

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,14 +287,14 @@ KIND_CLUSTER_NAME ?= llm-d-inference-scheduler-dev
287287
KIND_GATEWAY_HOST_PORT ?= 30080
288288

289289
.PHONY: env-dev-kind
290-
env-dev-kind: image-build
290+
env-dev-kind: image-build ## Run under kind ($(KIND_CLUSTER_NAME))
291291
CLUSTER_NAME=$(KIND_CLUSTER_NAME) \
292292
GATEWAY_HOST_PORT=$(KIND_GATEWAY_HOST_PORT) \
293293
IMAGE_REGISTRY=$(IMAGE_REGISTRY) \
294294
EPP_TAG=$(EPP_TAG) \
295295
./scripts/kind-dev-env.sh
296296

297297
.PHONY: clean-env-dev-kind
298-
clean-env-dev-kind:
298+
clean-env-dev-kind: ## Cleanup kind setup (delete cluster $(KIND_CLUSTER_NAME))
299299
@echo "INFO: cleaning up kind cluster $(KIND_CLUSTER_NAME)"
300300
kind delete cluster --name $(KIND_CLUSTER_NAME)

0 commit comments

Comments
 (0)