Skip to content

Commit 1e82fe3

Browse files
authored
Merge pull request #393 from scylladb/dk/switch-to-ubuntu-20.04
Switch to ubuntu 20.04
2 parents db4bee6 + a8a941f commit 1e82fe3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build-pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
include:
23-
- os: ubuntu-latest
23+
- os: ubuntu-20.04
2424
platform: x86_64
2525
steps:
2626
- uses: actions/checkout@v4

.github/workflows/build-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28-
- os: ubuntu-latest
28+
- os: ubuntu-20.04
2929
platform: x86_64
3030

31-
- os: ubuntu-latest
31+
- os: ubuntu-20.04
3232
platform: PyPy
3333

3434
- os: windows-latest
@@ -128,7 +128,7 @@ jobs:
128128
build_sdist:
129129
name: Build source distribution
130130
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build'))|| github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
131-
runs-on: ubuntu-latest
131+
runs-on: ubuntu-20.04
132132
steps:
133133
- uses: actions/checkout@v4
134134

@@ -148,7 +148,7 @@ jobs:
148148
build_wheels_extra_arch:
149149
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build'))|| github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
150150
# The host should always be linux
151-
runs-on: ubuntu-latest
151+
runs-on: ubuntu-20.04
152152
name: Build extra arch ${{ matrix.archs }} wheels
153153
strategy:
154154
fail-fast: false
@@ -185,7 +185,7 @@ jobs:
185185

186186
upload_pypi:
187187
needs: [build_wheels, build_wheels_extra_arch, build_sdist]
188-
runs-on: ubuntu-latest
188+
runs-on: ubuntu-20.04
189189
permissions:
190190
id-token: write
191191

.github/workflows/docs-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
release:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-20.04
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

.github/workflows/docs-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-20.04
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
tests:
1313
name: test ${{ matrix.event_loop_manager }} (${{ matrix.python-version }})
1414
if: "!contains(github.event.pull_request.labels.*.name, 'disable-integration-tests')"
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-20.04
1616
strategy:
1717
fail-fast: false
1818
matrix:

0 commit comments

Comments
 (0)