Skip to content

Run CI actions on ubuntu 24.04 since ubuntu 20.04 is being deprecated on 04/01/2025 #1032

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
Mar 28, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/aws-batch-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
awsbatch:
runs-on: "linux.20_04.4x"
runs-on: linux.24_04.4x
permissions:
id-token: write
contents: read
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/components-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
matrix:
include:
- scheduler: "aws_batch"
platform: "linux.20_04.4x"
platform: linux.24_04.4x
- scheduler: "aws_batch"
container_repo: localhost
extra_args: "--mock"
platform: "linux.20_04.4x"
platform: linux.24_04.4x
- scheduler: "kubernetes"
container_repo: localhost:5000/torchx
platform: "linux.20_04.16x"
platform: linux.24_04.4x
- scheduler: "local_cwd"
platform: ubuntu-20.04
platform: ubuntu-latest
- scheduler: "local_docker"
platform: "linux.20_04.4x"
platform: linux.24_04.4x
- scheduler: "ray"
platform: ubuntu-20.04
platform: ubuntu-latest
fail-fast: false
runs-on: ${{ matrix.platform }}
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: linux.24_04.4x
permissions:
contents: read
packages: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/doc-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
docbuild:
runs-on: linux.20_04.4x
runs-on: linux.24_04.4x
steps:
- name: Setup Python
uses: actions/setup-python@v2
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
fi

docpush:
runs-on: linux.20_04.4x
runs-on: linux.24_04.4x
needs: docbuild
if: ${{ github.ref == 'refs/heads/main' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcp-batch-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
gcpbatch:
if: github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-20.04
runs-on: linux.24_04.4x
permissions:
id-token: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kfp-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
kfp-launch:
runs-on: linux.20_04.16x
runs-on: inux.24_04.16x
steps:
- name: Setup Python
uses: actions/setup-python@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
kubernetes-launch:
runs-on: "linux.20_04.16x"
runs-on: linux.24_04.16x
permissions:
id-token: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
nightly:
runs-on: linux.20_04.4x
runs-on: linux.24_04.4x
steps:
- name: Setup Python 3.10
uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyre.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
pyre:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12]
platform: ["linux.20_04.4x"]
platform: [linux.24_04.4x]
include:
- python-version: 3.9
platform: macos-12-xl
- python-version: 3.12
platform: macos-13-xlarge
fail-fast: false
env:
OS: ${{ matrix.platform }}
Expand Down
Loading