Skip to content

Commit 89f7dda

Browse files
authored
Merge branch 'main' into patch-1
2 parents 4ac9000 + 4566149 commit 89f7dda

22 files changed

+92
-41
lines changed

.github/workflows/aws-batch-integration-tests.yaml

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

99
jobs:
1010
awsbatch:
11-
runs-on: "linux.20_04.4x"
11+
runs-on: linux.24_04.4x
1212
permissions:
1313
id-token: write
1414
contents: read

.github/workflows/components-integration-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
matrix:
1313
include:
1414
- scheduler: "aws_batch"
15-
platform: "linux.20_04.4x"
15+
platform: linux.24_04.4x
1616
- scheduler: "aws_batch"
1717
container_repo: localhost
1818
extra_args: "--mock"
19-
platform: "linux.20_04.4x"
19+
platform: linux.24_04.4x
2020
- scheduler: "kubernetes"
2121
container_repo: localhost:5000/torchx
22-
platform: "linux.20_04.16x"
22+
platform: linux.24_04.4x
2323
- scheduler: "local_cwd"
24-
platform: ubuntu-20.04
24+
platform: ubuntu-latest
2525
- scheduler: "local_docker"
26-
platform: "linux.20_04.4x"
26+
platform: linux.24_04.4x
2727
- scheduler: "ray"
28-
platform: ubuntu-20.04
28+
platform: ubuntu-latest
2929
fail-fast: false
3030
runs-on: ${{ matrix.platform }}
3131
permissions:

.github/workflows/container.yaml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-20.04
10+
runs-on: linux.24_04.4x
1111
permissions:
1212
contents: read
1313
packages: write

.github/workflows/doc-build.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
docbuild:
14-
runs-on: linux.20_04.4x
14+
runs-on: linux.24_04.4x
1515
steps:
1616
- name: Setup Python
1717
uses: actions/setup-python@v2
@@ -20,16 +20,15 @@ jobs:
2020
architecture: x64
2121
- name: Checkout TorchX
2222
uses: actions/checkout@v2
23-
- name: Install Dependencies
23+
- name: Install Doc Dependencies
2424
run: |
2525
set -eux
2626
sudo apt-get update
2727
sudo apt-get install -y pandoc
28-
pip install -e .[dev]
2928
pip install -r docs/requirements.txt
3029
- name: Install TorchX
3130
run: |
32-
python setup.py develop
31+
pip install -e .[dev]
3332
- name: Start Airflow
3433
run: |
3534
# start airflow in background
@@ -65,7 +64,7 @@ jobs:
6564
fi
6665
6766
docpush:
68-
runs-on: linux.20_04.4x
67+
runs-on: linux.24_04.4x
6968
needs: docbuild
7069
if: ${{ github.ref == 'refs/heads/main' }}
7170
steps:

.github/workflows/gcp-batch-integration-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
gcpbatch:
1111
if: github.event.pull_request.head.repo.fork == false
12-
runs-on: ubuntu-20.04
12+
runs-on: linux.24_04.4x
1313
permissions:
1414
id-token: write
1515
contents: read

.github/workflows/kfp-integration-tests.yaml

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

99
jobs:
1010
kfp-launch:
11-
runs-on: linux.20_04.16x
11+
runs-on: inux.24_04.16x
1212
steps:
1313
- name: Setup Python
1414
uses: actions/setup-python@v2

.github/workflows/kubernetes-minikube-integration-test.yaml

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

99
jobs:
1010
kubernetes-launch:
11-
runs-on: "linux.20_04.16x"
11+
runs-on: linux.24_04.4x
1212
permissions:
1313
id-token: write
1414
contents: read

.github/workflows/lint.yaml

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

99
jobs:
1010
lint:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- name: Setup Python
1414
uses: actions/setup-python@v2

.github/workflows/nightly.yaml

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

88
jobs:
99
nightly:
10-
runs-on: linux.20_04.4x
10+
runs-on: linux.24_04.4x
1111
steps:
1212
- name: Setup Python 3.10
1313
uses: actions/setup-python@v2

.github/workflows/pyre.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
pyre:
11-
runs-on: ubuntu-24.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- name: Setup Python
1414
uses: actions/setup-python@v2
@@ -22,6 +22,6 @@ jobs:
2222
set -eux
2323
pip install -e .[dev]
2424
- name: Init Lint Runner
25-
lintrunner init
25+
run: lintrunner init
2626
- name: Run Pyre
2727
run: scripts/pyre.sh

0 commit comments

Comments
 (0)