Skip to content

Commit

Permalink
Use the default runner type (#3285)
Browse files Browse the repository at this point in the history
* Use the default runner type

During the Linux Amazon 2023 AMI (base OS) migration these jobs had been temporarily shifted to use the new experimental AMI.

Now that the new AMI has become the base AMI, shifting these back to use the default runners

* More runner fixes
  • Loading branch information
ZainRizvi authored Sep 14, 2024
1 parent df3f10b commit 3a059ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
env:
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.4xlarge
runs-on: linux.4xlarge
steps:
- name: Clean workspace
run: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
env:
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.12xlarge
runs-on: linux.12xlarge
steps:
- name: Clean workspace
run: |
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
env:
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.4xlarge
runs-on: linux.4xlarge
steps:
- name: Clean workspace
run: |
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
env:
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.12xlarge
runs-on: linux.12xlarge
steps:
- name: Clean workspace
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gpu-hvd-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
DOCKER_IMAGE: "pytorch/conda-builder:cuda12.1"
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.8xlarge.nvidia.gpu
runs-on: linux.8xlarge.nvidia.gpu
timeout-minutes: 60

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gpu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
DOCKER_IMAGE: "pytorch/conda-builder:cuda12.1"
REPOSITORY: ${{ github.repository }}
PR_NUMBER: ${{ github.event.pull_request.number }}
runs-on: amz2023.linux.8xlarge.nvidia.gpu
runs-on: linux.8xlarge.nvidia.gpu
timeout-minutes: 85

steps:
Expand Down

0 comments on commit 3a059ce

Please sign in to comment.