Skip to content

Commit b04feae

Browse files
authored
Update CI runner to ubuntu 22.04 (#2206)
move to ubuntu 22.04
1 parent dd4f934 commit b04feae

32 files changed

Lines changed: 37 additions & 37 deletions

.github/workflows/check_code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
python-version: [3.9]
20-
os: [ubuntu-20.04]
20+
os: [ubuntu-22.04]
2121

2222
runs-on: ${{ matrix.os }}
2323
steps:

.github/workflows/dev_test_benckmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version: ['3.9', '3.11']
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Setup Python ${{ matrix.python-version }}

.github/workflows/dev_test_bettertransformer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os:
16-
- ubuntu-20.04
16+
- ubuntu-22.04
1717
- macos-13
1818
runs-on: ${{ matrix.os }}
1919
steps:

.github/workflows/dev_test_dummy_inputs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ['3.9', '3.11']
1616
os:
17-
- ubuntu-20.04
17+
- ubuntu-22.04
1818
- macos-13
1919
runs-on: ${{ matrix.os }}
2020
steps:

.github/workflows/dev_test_exporters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version: ['3.9', '3.11']
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Setup Python ${{ matrix.python-version }}

.github/workflows/dev_test_fx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ['3.9', '3.11']
1616
os:
17-
- ubuntu-20.04
17+
- ubuntu-22.04
1818
- macos-13
1919
runs-on: ${{ matrix.os }}
2020
steps:

.github/workflows/dev_test_onnx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ['3.9', '3.11']
1616
os:
17-
- ubuntu-20.04
17+
- ubuntu-22.04
1818
- macos-13
1919
runs-on: ${{ matrix.os }}
2020
steps:

.github/workflows/dev_test_onnxruntime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ['3.9', '3.11']
1616
os:
17-
- ubuntu-20.04
17+
- ubuntu-22.04
1818
- windows-2019
1919
- macos-13
2020
runs-on: ${{ matrix.os }}

.github/workflows/dev_test_optimum_common.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ['3.9', '3.11']
1616
os:
17-
- ubuntu-20.04
17+
- ubuntu-22.04
1818
- windows-2019
1919
- macos-13
2020
runs-on: ${{ matrix.os }}
@@ -38,5 +38,5 @@ jobs:
3838
# Setting HUGGINGFACE_CO_STAGING to true for only one job of the matrix
3939
as the staging tests cannot run in parallel.
4040
export HUGGINGFACE_CO_STAGING=${{ matrix.python-version == 3.8 && matrix.os
41-
== ubuntu-20.04 }}
41+
== ubuntu-22.04 }}
4242
python -m unittest discover -s tests -p test_*.py

.github/workflows/test_benckmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version: [3.9]
21-
os: [ubuntu-20.04]
21+
os: [ubuntu-22.04]
2222

2323
runs-on: ${{ matrix.os }}
2424
steps:

0 commit comments

Comments
 (0)