Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions demos/c_api_minimal_app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ BASE_OS ?= ubuntu24

ifeq ($(BASE_OS),ubuntu24)
BASE_OS_TAG_UBUNTU ?= 24.04
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2025.3/ovms_ubuntu24.tar.gz"
PACKAGE_URL ?="https://github.com/openvinotoolkit/model_server/releases/download/v2025.4.1/ovms_ubuntu24_python_on.tar.gz"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why are we changing from python off to python on?
also why did we change naming of release artifacts from ovms_ubuntu24 to ovms_ubuntu_python_off? if someone has it automated it might break

BASE_IMAGE ?= ubuntu:$(BASE_OS_TAG_UBUNTU)
DIST_OS=ubuntu
endif
ifeq ($(BASE_OS),redhat)
BASE_OS_TAG_REDHAT ?= 9.6
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2025.3/ovms_redhat.tar.gz"
PACKAGE_URL ="https://github.com/openvinotoolkit/model_server/releases/download/v2025.4.1/ovms_redhat_python_on.tar.gz"
BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi:$(BASE_OS_TAG_REDHAT)
DIST_OS=redhat
endif
Expand Down