Skip to content

Commit 5d866bc

Browse files
authored
Replace ubuntu 18.04 to latest everywhere.
1 parent 5336645 commit 5d866bc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/manylinux_wheels.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
kivy_examples_create:
1616
# we need examples wheel for tests, but only windows actually uploads kivy-examples to pypi/server
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Set up Python
@@ -45,23 +45,23 @@ jobs:
4545
source .ci/ubuntu_ci.sh &&
4646
yum install -y epel-release &&
4747
build_and_install_linux_kivy_sys_deps
48-
runs-on: ubuntu-18.04
48+
runs-on: ubuntu-latest
4949
strategy:
5050
matrix:
5151
os: [ubuntu-latest]
5252
cibw_archs: [auto]
5353
cibw_build: ['cp37-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64']
5454
include:
55-
- os: ubuntu-18.04
55+
- os: ubuntu-latest
5656
cibw_archs: aarch64
5757
cibw_build: cp37-manylinux_aarch64
58-
- os: ubuntu-18.04
58+
- os: ubuntu-latest
5959
cibw_archs: aarch64
6060
cibw_build: cp38-manylinux_aarch64
61-
- os: ubuntu-18.04
61+
- os: ubuntu-latest
6262
cibw_archs: aarch64
6363
cibw_build: cp39-manylinux_aarch64
64-
- os: ubuntu-18.04
64+
- os: ubuntu-latest
6565
cibw_archs: aarch64
6666
cibw_build: cp310-manylinux_aarch64
6767
if: github.event_name == 'schedule' || (github.event_name == 'create' && github.event.ref_type == 'tag') || contains(github.event.head_commit.message, '[build wheel]') || contains(github.event.head_commit.message, '[build wheel linux]') || contains(github.event.pull_request.title, '[build wheel]') || contains(github.event.pull_request.title, '[build wheel linux]')
@@ -91,7 +91,7 @@ jobs:
9191
path: ./wheelhouse/*.whl
9292

9393
manylinux_wheel_upload:
94-
runs-on: ubuntu-18.04
94+
runs-on: ubuntu-latest
9595
needs: [manylinux_wheel_create, kivy_examples_create]
9696
if: github.event_name != 'pull_request'
9797
steps:
@@ -133,7 +133,7 @@ jobs:
133133
upload_artifacts_to_pypi
134134
135135
manylinux_wheel_test:
136-
runs-on: ubuntu-18.04
136+
runs-on: ubuntu-latest
137137
needs: [manylinux_wheel_create, kivy_examples_create]
138138
strategy:
139139
matrix:
@@ -182,7 +182,7 @@ jobs:
182182
path: .benchmarks-kivy
183183

184184
sdist_test:
185-
runs-on: ubuntu-18.04
185+
runs-on: ubuntu-latest
186186
env:
187187
DISPLAY: ':99.0'
188188
KIVY_SPLIT_EXAMPLES: 0

0 commit comments

Comments
 (0)