Skip to content

Commit 3737db7

Browse files
authored
migrate workflow on ubuntu 22 (#2795)
1 parent 39be23b commit 3737db7

14 files changed

+17
-85
lines changed

.ci/skipped_notebooks.yml

Lines changed: 0 additions & 68 deletions
Large diffs are not rendered by default.

.ci/validation_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
class ValidationMatrix:
7-
os = ("ubuntu-20.04", "ubuntu-22.04", "windows-2019", "macos-13")
7+
os = ("ubuntu-22.04", "windows-2019", "macos-13")
88
python = ("3.9", "3.10", "3.11", "3.12")
99
device = ("cpu", "gpu")
1010

.github/workflows/codecheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
build_codecheck:
3535
strategy:
3636
fail-fast: false
37-
runs-on: ubuntu-20.04 # change cachepip step when changing this
37+
runs-on: ubuntu-22.04 # change cachepip step when changing this
3838
steps:
3939
- name: Checkout repository
4040
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
path: |
5555
pipcache
56-
key: ${{ env.PIP_CACHE_KEY }}-ubuntu-20.04-3.10
56+
key: ${{ env.PIP_CACHE_KEY }}-ubuntu-22.04-3.10
5757
- name: Cache openvino packages
5858
if: steps.cachepip.outputs.cache-hit != 'true'
5959
run: |

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646

47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-22.04
4848

4949
steps:
5050
- name: Maximize build space

.github/workflows/gh_pages_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121

2222
jobs:
2323
build_assets:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-22.04
2525
permissions:
2626
contents: write
2727
outputs:
@@ -103,7 +103,7 @@ jobs:
103103
git push
104104
105105
deploy_github_pages:
106-
runs-on: ubuntu-20.04
106+
runs-on: ubuntu-22.04
107107
needs: build_assets
108108
if: ${{ needs.build_assets.outputs.should_deploy == 'true' }}
109109
permissions:

.github/workflows/install_requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-20.04, ubuntu-22.04, windows-2019, windows-2022, macos-13]
22+
os: [ubuntu-22.04, windows-2019, windows-2022, macos-13]
2323
python: ['3.9', '3.10', '3.11', '3.12']
2424
steps:
2525
- name: Checkout repository

.github/workflows/install_requirements_china.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-20.04]
16+
os: [ubuntu-22.04]
1717
python: [3.9]
1818

1919
runs-on: ${{ matrix.os }}

.github/workflows/pip_conflicts_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ permissions:
2020

2121
jobs:
2222
build_pip_conflicts_check:
23-
runs-on: ubuntu-20.04 # change cachepip step when changing this
23+
runs-on: ubuntu-22.04 # change cachepip step when changing this
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

.github/workflows/selector_precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818

1919
jobs:
2020
link_build_selector:
21-
runs-on: ubuntu-20.04
21+
runs-on: ubuntu-22.04
2222
permissions:
2323
contents: write
2424
steps:

.github/workflows/spellcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build_spellcheck:
3131
strategy:
3232
fail-fast: false
33-
runs-on: ubuntu-20.04 # change cachepip step when changing this
33+
runs-on: ubuntu-22.04 # change cachepip step when changing this
3434
steps:
3535
- name: Checkout repository
3636
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
path: |
5454
pipcache
55-
key: ${{ env.PIP_CACHE_KEY }}-ubuntu-20.04-3.9
55+
key: ${{ env.PIP_CACHE_KEY }}-ubuntu-22.04-3.9
5656

5757
- name: Install dependencies
5858
run: |

0 commit comments

Comments
 (0)