Skip to content

Update CI to latest Ubuntu image. #3428

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

Merged
merged 1 commit into from
Apr 6, 2025
Merged
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
make lint
docs:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
make docs
make doctest
tutorials-html:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: |
SPHINXOPTS="-E" make tutorial
unit:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: docs
strategy:
matrix:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
examples:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [docs, tutorials-html]
strategy:
matrix:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
integration_1:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: docs
strategy:
matrix:
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
integration_2:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: docs
strategy:
matrix:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
funsor:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: docs
strategy:
matrix:
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
finish:
needs: [unit, examples, integration_1, integration_2, funsor]
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
Expand Down