Skip to content

Commit b2f4dc2

Browse files
committed
Update for 2026.2.1
1 parent ca09afc commit b2f4dc2

102 files changed

Lines changed: 34 additions & 3992 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build_test_win.yml

Lines changed: 0 additions & 50 deletions
This file was deleted.

.github/workflows/images_build_check.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,6 @@ jobs:
1616
os: [ubuntu-24.04]
1717
image_os: [ubuntu24]
1818
image_distribution: [runtime]
19-
exclude:
20-
- os: ubuntu-24.04
21-
image_os: winserver2019
22-
- os: windows-2019
23-
image_os: centos7
24-
- os: windows-2019
25-
image_os: ubuntu24
26-
- os: windows-2019
27-
image_os: ubuntu24
2819
runs-on: ${{ matrix.os }}
2920
steps:
3021
- name: Code checkout
@@ -39,9 +30,6 @@ jobs:
3930
- name: Build Linux image (runtime, latest release)
4031
if: ${{ matrix.os == 'ubuntu-24.04' && ! startsWith(matrix.image_os, 'win') }}
4132
run: python docker_openvino.py build --dist ${{ matrix.image_distribution }} -d cpu -d gpu -os ${{ matrix.image_os }}
42-
- name: Build Windows image (runtime, latest release)
43-
if: ${{ matrix.os == 'windows-2019' && startsWith(matrix.image_os, 'win') }}
44-
run: python docker_openvino.py build --dist ${{ matrix.image_distribution }} -os ${{ matrix.image_os }}
4533
- name: Checking resulting image
4634
if: ${{ always() }}
4735
run: docker images

.github/workflows/manual_publish.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ on:
1212
required: true
1313
default: 'dev'
1414
os:
15-
description: 'OS for Docker image: ubuntu20, winserver2019, windows20h2'
15+
description: 'OS for Docker image: ubuntu20'
1616
required: true
1717
default: ''
1818
host_os:
19-
description: 'OS for Host machine: ubuntu-20.04, windows-docker'
19+
description: 'OS for Host machine: ubuntu-20.04'
2020
required: true
2121
default: ''
2222
tags:
@@ -34,7 +34,7 @@ jobs:
3434
manual_publish:
3535
strategy:
3636
matrix:
37-
os: [ ubuntu-24.04, windows-docker ]
37+
os: [ ubuntu-24.04 ]
3838
runs-on: ${{ matrix.os }}
3939
steps:
4040
- name: Code checkout
@@ -52,12 +52,6 @@ jobs:
5252
env:
5353
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
5454
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
55-
- name: Docker login to registry (Windows)
56-
if: ${{ matrix.os == 'windows-docker' }}
57-
run: echo $Env:DOCKER_PASSWORD | docker login --username $Env:DOCKER_USERNAME --password-stdin
58-
env:
59-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
60-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
6155
- name: Build and publish image on DockerHub
6256
if: ${{ matrix.os == github.event.inputs.host_os }}
6357
run: python docker_openvino.py all --dist ${{ github.event.inputs.distribution }} -os ${{ github.event.inputs.os }} --package_url ${{ github.event.inputs.package_url }} --nightly -r openvino ${{ github.event.inputs.tags }} ${{ github.event.inputs.args }}
@@ -69,12 +63,6 @@ jobs:
6963
env:
7064
AZURE_USERNAME: ${{ secrets.AZURE_USERNAME }}
7165
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
72-
- name: Docker login to Azure registry (Windows)
73-
if: ${{ matrix.os == 'windows-docker' && contains(github.event.inputs.os, 'win') }}
74-
run: echo $Env:AZURE_PASSWORD | docker login --username $Env:AZURE_USERNAME --password-stdin openvino.azurecr.io
75-
env:
76-
AZURE_USERNAME: ${{ secrets.AZURE_USERNAME }}
77-
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}
7866
- name: Publish image on Azure
7967
if: ${{ matrix.os == github.event.inputs.host_os }}
8068
run: python docker_openvino.py deploy -r openvino.azurecr.io ${{ github.event.inputs.tags }}

.github/workflows/update_dockerfiles.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
shell: bash
2727
run: |
2828
declare -A IMAGES=( ['ubuntu20']='runtime dev'
29-
['rhel8']='runtime dev'
30-
['winserver2019']='runtime dev'
31-
['windows20h2']='runtime dev' )
29+
['rhel8']='runtime dev' )
3230
for image_os in "${!IMAGES[@]}"
3331
do
3432
for distr in ${IMAGES[$image_os]}

docker_openvino.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
# Copyright (C) 2019-2024 Intel Corporation
3+
# Copyright (C) 2019-2026 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55
"""Main script of this framework, putting all the logic together"""
66
import argparse

dockerfiles/README.md

Lines changed: 0 additions & 107 deletions
This file was deleted.

dockerfiles/rhel8/autobuild/README.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

dockerfiles/rhel8/openshift/README.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)