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
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ FUZZER_BUILD ?= 0
# - uncomment source build section, comment binary section
# - adjust binary version path - version variable is not passed to WORKSPACE file!

OV_SOURCE_BRANCH ?= 9a5c0f67aa9bfe780972eaa721ccfa082323e9a4 # master branch
OV_SOURCE_BRANCH ?= 6a210b9423f456325fdc63d5b5240f20bf82cfbd # master branch
OV_TOKENIZERS_BRANCH ?= 85480f170beba3a975cf908bc688a4398424aba8 # master branch
OV_GENAI_BRANCH ?= d93080c377f934a1b4acf371700313cd98f369b9 # master branch
OV_GENAI_BRANCH ?= 8efd23538d69ddf89a76bd3a1116c23c96ac72f6 # master branch

OV_SOURCE_ORG ?= openvinotoolkit
OV_GENAI_ORG ?= openvinotoolkit
OV_SOURCE_ORG ?= CuriousPanCake
OV_GENAI_ORG ?= yatarkan
Comment on lines +82 to +83
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

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

Changing the default OpenVINO/OpenVINO GenAI clone orgs to personal forks makes the Docker build pull source code from non-official repositories by default, which is a supply-chain risk and can break reproducibility/CI if those forks disappear or don’t contain the pinned commits. Keep defaults as openvinotoolkit and rely on make OV_SOURCE_ORG=... OV_GENAI_ORG=... overrides (or a separate developer-only config) when forks are needed.

Suggested change
OV_SOURCE_ORG ?= CuriousPanCake
OV_GENAI_ORG ?= yatarkan
OV_SOURCE_ORG ?= openvinotoolkit
OV_GENAI_ORG ?= openvinotoolkit

Copilot uses AI. Check for mistakes.
OV_TOKENIZERS_ORG ?= openvinotoolkit

TEST_LLM_PATH ?= "src/test/llm_testing"
Expand Down