Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov authored Dec 19, 2024
1 parent c904a89 commit c4e17ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .github/dockerfiles/ov_build/ubuntu_22_04_riscv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf && \

ENV DEBIAN_FRONTEND="noninteractive" \
TZ="Europe/London" \
CCACHE_MAXSIZE=2G \
RISCV_TOOLCHAIN_ROOT=/__w/openvino/xuantie/Xuantie-900-gcc-linux-5.15.0-glibc-x86_64-V2.8.1/

RUN apt-get update && \
Expand Down Expand Up @@ -64,10 +63,10 @@ RUN echo deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ jammy main restricte

RUN dpkg --add-architecture riscv64 && \
apt-get update -o Dir::Etc::sourcelist=/etc/apt/sources.list.d/riscv64-sources.list && \
apt-get install -y --no-install-recommends libpython3-dev:riscv64 && \
apt-get install -y --no-install-recommends apt-utils && \
apt-get -y install curl && apt-get install libgomp1:riscv64 && \
apt-get install libatomic1:riscv64
apt-get install \
libpython3-dev:riscv64 \
libgomp1:riscv64 \
libatomic1:riscv64

# Setup pip
ENV PIP_VERSION="24.0"
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/dev_cpu_linux_riscv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,6 @@ jobs:
CMAKE_BUILD_TYPE: 'Release'
CMAKE_CXX_COMPILER_LAUNCHER: ccache
CMAKE_C_COMPILER_LAUNCHER: ccache
SCCACHE_IGNORE_SERVER_IO_ERROR: 1
SCCACHE_SERVER_PORT: 35555
SCCACHE_ERROR_LOG: /__w/openvino/sccache_log.txt
SCCACHE_LOG: warn
GITHUB_WORKSPACE: '/__w/openvino/openvino'
OPENVINO_REPO: /__w/openvino/openvino/openvino
INSTALL_DIR: /__w/openvino/openvino/openvino_install
Expand All @@ -99,6 +95,7 @@ jobs:
CCACHE_REMOTE_DIR: /mount/caches/ccache/ubuntu22_riscv64/${{ github.base_ref || github.ref_name }}
CCACHE_DIR: /__w/openvino/openvino/ccache
CCACHE_TEMPDIR: /__w/openvino/openvino/ccache_temp
CACHE_MAXSIZE=2G
XUANTIE_BIN_PATH: /mount/testdata1/
if: "!needs.smart_ci.outputs.skip_workflow"

Expand Down

0 comments on commit c4e17ab

Please sign in to comment.