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

CRITICAL: fix failing ci #2088

Merged
merged 1 commit into from
Oct 26, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-images-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

version-cpu:
name: "Latest Accelerate CPU [version]"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
needs: get-version
steps:
- name: Set up Docker Buildx
Expand All @@ -41,7 +41,7 @@ jobs:

version-cuda:
name: "Latest Accelerate GPU [version]"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
needs: get-version
steps:
- name: Set up Docker Buildx
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
clean-storage:
name: "Clean docker image storage"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
steps:
- name: Clean storage
run: |
Expand All @@ -22,7 +22,7 @@ jobs:

latest-cpu:
name: "Latest Accelerate CPU [dev]"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
needs: clean-storage
steps:
- name: Set up Docker Buildx
Expand All @@ -41,7 +41,7 @@ jobs:

latest-cuda:
name: "Latest Accelerate GPU [dev]"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
needs: clean-storage
steps:
- name: Set up Docker Buildx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
run_all_tests_single_gpu:
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
env:
CUDA_VISIBLE_DEVICES: "0"
TEST_TYPE: "single_gpu"
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
python utils/log_reports.py >> $GITHUB_STEP_SUMMARY

run_all_tests_multi_gpu:
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
env:
CUDA_VISIBLE_DEVICES: "0,1"
TEST_TYPE: "multi_gpu"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_merge_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
run_all_tests_single_gpu:
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
env:
CUDA_VISIBLE_DEVICES: "0"
container:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
python utils/log_reports.py >> $GITHUB_STEP_SUMMARY

run_all_tests_multi_gpu:
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
container:
image: huggingface/accelerate-gpu:latest
options: --gpus all --shm-size "16gb"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/self_hosted_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
container:
image: huggingface/accelerate-gpu:latest
options: --gpus all --shm-size "16gb"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
container:
image: huggingface/accelerate-gpu:latest
options: --gpus all --shm-size "16gb"
runs-on: [self-hosted, docker-gpu, multi-gpu]
runs-on: [self-hosted, docker-gpu, multi-gpu, gcp]
strategy:
fail-fast: false
matrix:
Expand Down
Loading