Skip to content

Commit 7d79cc6

Browse files
authored
Fix bazelversion (#2541)
1 parent b0b8226 commit 7d79cc6

File tree

4 files changed

+6
-19
lines changed

4 files changed

+6
-19
lines changed

.bazelversion

-15
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
1-
#
2-
# Copyright (c) 2024 Intel Corporation
3-
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
#
161
6.1.1

Dockerfile.redhat

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ RUN if [ "$NVIDIA" == "1" ] ; then true ; else exit 0 ; fi ; \
235235

236236
# Build OpenVINO Model Server
237237
WORKDIR /ovms
238-
COPY .bazelrc WORKSPACE /ovms/
238+
COPY .bazelrc .bazelversion WORKSPACE /ovms/
239239
# since bazel does not have easy way to pass if down the dependencies to have select the sources
240240
# for libcurl & ssl we hack it this way
241241
RUN ln -s /usr/lib64 /usr/lib/x86_64-linux-gnu

Dockerfile.ubuntu

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ RUN curl -H "User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHT
239239

240240
# Build OpenVINO Model Server
241241
WORKDIR /ovms
242-
COPY .bazelrc WORKSPACE /ovms/
242+
COPY .bazelrc .bazelversion WORKSPACE /ovms/
243243
COPY external /ovms/external/
244244
# This path is required for namespace to setup Python dependencies for testing the binding
245245
COPY src/BUILD /ovms/src/BUILD

ci/lib_search.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ def check_dir(start_dir):
135135
"aipc.txt",
136136
"internal_tests",
137137
"pugixml_v1.13_flags.patch",
138-
"rag_demo.ipynb"
138+
"rag_demo.ipynb",
139+
".bazelversion",
139140
]
140141

141142
exclude_directories = ['/dist/', 'release_files/thirdparty-licenses']
@@ -221,7 +222,8 @@ def check_func(start_dir):
221222
'graph.pbtxt',
222223
"build_dependencies.sh",
223224
"iris_tracking.pbtxt",
224-
"internal_tests"
225+
"internal_tests",
226+
".bazelversion",
225227
]
226228

227229
exclude_directories = ['/dist/']

0 commit comments

Comments
 (0)