Skip to content

Commit

Permalink
[CI] [GHA] Transition to gcc-10 in the Linux ARM workflow (openvino…
Browse files Browse the repository at this point in the history
…toolkit#23275)

## Description:
- [CI] [GHA] Transition to gcc-10 in the Linux ARM workflow

### Tickets:
 - *134480*
  • Loading branch information
akashchi authored Mar 6, 2024
1 parent 0852c4e commit 2007b7b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/linux_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,13 @@ jobs:
- name: Install build dependencies
run: |
bash ${OPENVINO_REPO}/install_build_dependencies.sh
# default-jdk - Java API
apt install --assume-yes --no-install-recommends default-jdk
apt install --assume-yes --no-install-recommends default-jdk gcc-10 g++-10
# Set gcc-10 as a default one
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 30
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 30
- name: Install sccache
uses: mozilla-actions/[email protected]
Expand Down

0 comments on commit 2007b7b

Please sign in to comment.