Skip to content

Commit

Permalink
Several improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Oct 12, 2023
1 parent ee15846 commit c3f42c8
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ jobs:

- name: Setup pip cache dir
run: |
apt install --assume-yes libpython3.9 python3.9 python3.9-distutils wget
apt install --assume-yes libpython3.9 python3.9 python3.9-distutils wget libgomp1
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1152,12 +1152,11 @@ jobs:
defaults:
run:
shell: bash
runs-on: ubuntu-20.04-16-cores-arm
# TODO: Switch back to self-hosted runners
# container:
# image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04
# volumes:
# - /mount/caches:/mount/caches
runs-on: aks-linux-16-cores-arm
container:
image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04
volumes:
- /mount/caches:/mount/caches
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
INSTALL_DIR: ${{ github.workspace }}/install
Expand All @@ -1170,7 +1169,7 @@ jobs:

- name: Install python
run: |
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-distutils wget
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-distutils wget libgomp1
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
Expand Down Expand Up @@ -1235,10 +1234,10 @@ jobs:
shell: bash
runs-on: ubuntu-20.04-16-cores-arm
# TODO: Switch back to self-hosted runners
# container:
# image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04
# volumes:
# - /mount/caches:/mount/caches
container:
image: openvinogithubactions.azurecr.io/dockerhub/ubuntu:20.04
volumes:
- /mount/caches:/mount/caches
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
INSTALL_DIR: ${{ github.workspace }}/install
Expand All @@ -1251,7 +1250,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-distutils python3.9-dev wget
sudo apt install --assume-yes libpython3.9 python3.9 python3.9-distutils python3.9-dev wget libgomp1
wget https://bootstrap.pypa.io/get-pip.py
python3.9 get-pip.py
# install git (required to build pip deps from the sources)
Expand Down

0 comments on commit c3f42c8

Please sign in to comment.