Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace ubuntu-latest by ubuntu-20.04 in github actions #258

Merged
merged 1 commit into from
Nov 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 18,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-20.04, macos-latest, windows-latest]
python: [cp36, cp37, cp38, cp39, cp310]
arch: [x86_64, amd64, 32]
exclude:
- os: macos-latest
arch: amd64
- os: macos-latest
arch: 32
- os: ubuntu-latest
- os: ubuntu-20.04
arch: amd64
- os: ubuntu-latest
- os: ubuntu-20.04
arch: 32
- os: windows-latest
arch: x86_64
Expand Down Expand Up @@ -61,7 61,7 @@ jobs:

tarball:
name: Build tarball
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: call-test-workflow
steps:
- uses: actions/checkout@v2
Expand All @@ -82,7 82,7 @@ jobs:

publish:
name: Publish on PyPI
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: [call-test-workflow, wheels, tarball]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keep-alive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 11,7 @@ jobs:

keep-workflow-alive:
name: Keep workflow alive
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 7,7 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
Expand Down