Skip to content

Commit 0b69620

Browse files
Merge branch 'master' into remove/OVClassModelTestP
2 parents fc1f2a2 + edba451 commit 0b69620

File tree

7 files changed

+289
-219
lines changed

7 files changed

+289
-219
lines changed

.github/workflows/history_cuda.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ on:
1010

1111
permissions: read-all
1212

13+
env:
14+
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
15+
1316
jobs:
1417
history:
1518
runs-on: ubuntu-22.04
1619
steps:
1720
- name: checkout master branch
1821
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
1922
with:
20-
ref: master
23+
ref: ${{ env.OV_BRANCH}}
2124
fetch-depth: 0
2225
- name: delete temporary branch
2326
run: git branch -D temporary-ci-branch | echo 1

.github/workflows/linux.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414

1515
env:
1616
PYTHON_VERSION: '3.11'
17+
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
1718

1819
permissions: read-all
1920

@@ -58,7 +59,7 @@ jobs:
5859
repository: 'openvinotoolkit/openvino'
5960
path: ${{ env.OPENVINO_REPO }}
6061
submodules: 'true'
61-
ref: 'master'
62+
ref: ${{ env.OV_BRANCH}}
6263

6364
- name: Clone OpenVINO Contrib
6465
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
@@ -240,7 +241,7 @@ jobs:
240241
install_build_dependencies.sh
241242
sparse-checkout-cone-mode: false
242243
repository: 'openvinotoolkit/openvino'
243-
ref: 'master'
244+
ref: ${{ env.OV_BRANCH}}
244245
path: ${{ env.OPENVINO_REPO }}
245246

246247
- name: Install Prerequisites

.github/workflows/mac.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ concurrency:
1414

1515
env:
1616
PYTHON_VERSION: '3.11'
17+
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
1718

1819
permissions: read-all
1920

@@ -48,7 +49,7 @@ jobs:
4849
repository: 'openvinotoolkit/openvino'
4950
path: 'openvino'
5051
submodules: 'true'
51-
ref: 'master'
52+
ref: ${{ env.OV_BRANCH}}
5253

5354
- name: Clone OpenVINO Contrib
5455
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/windows.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515

1616
env:
1717
PYTHON_VERSION: '3.11'
18+
OV_BRANCH: ${{ github.base_ref || github.event.merge_group.base_ref || github.ref }}
1819

1920
permissions: read-all
2021

@@ -50,7 +51,7 @@ jobs:
5051
repository: 'openvinotoolkit/openvino'
5152
path: ${{ env.OPENVINO_REPO }}
5253
submodules: 'true'
53-
ref: 'master'
54+
ref: ${{ env.OV_BRANCH}}
5455

5556
- name: Clone OpenVINO Contrib
5657
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

0 commit comments

Comments
 (0)