Skip to content

Commit 427c84a

Browse files
authored
ci: change self-hosted runner tags (#461)
1 parent cb680b3 commit 427c84a

File tree

9 files changed

+13
-14
lines changed

9 files changed

+13
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
4242
build_type: [Release]
4343

44-
runs-on: [self-hosted, linux, x64, build]
44+
runs-on: [self-hosted, linux, gpu, sm80]
4545

4646
env:
4747
BUILD_TYPE: ${{ matrix.build_type }}

.github/workflows/build_wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python: ["3.9", "3.10", "3.11", "3.12"]
2727
cuda: ["11.8", "12.6", "12.8"]
2828
torch: ["2.7.0"]
29-
runs-on: [self-hosted, linux, release]
29+
runs-on: [self-hosted, linux]
3030
env:
3131
PYTHON_VERSION: ${{ matrix.python }}
3232
CUDA_VERSION: ${{ matrix.cuda }}

.github/workflows/package_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
python: ["3.12"]
4242
cuda: ["12.8"]
4343
torch: ["2.7.0"]
44-
runs-on: [self-hosted, linux, build]
44+
runs-on: [self-hosted, linux, gpu]
4545
env:
4646
PYTHON_VERSION: ${{ matrix.python }}
4747
CUDA_VERSION: ${{ matrix.cuda }}

.github/workflows/publish_cpp_image.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
description: 'Tag to build and push'
77
required: true
88
type: string
9-
9+
1010
workflow_call:
1111
inputs:
1212
tag:
@@ -19,13 +19,13 @@ env:
1919

2020
jobs:
2121
publish_gateway:
22-
runs-on: [self-hosted, linux, release]
22+
runs-on: [self-hosted, linux]
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
2626
with:
2727
submodules: recursive
28-
28+
2929
- name: Set up QEMU
3030
uses: docker/setup-qemu-action@v3
3131

@@ -49,7 +49,7 @@ jobs:
4949
vectorchai/scalellm-gateway:latest
5050
5151
publish_scalellm_cuda126:
52-
runs-on: [self-hosted, linux, release]
52+
runs-on: [self-hosted, linux]
5353
steps:
5454
- name: Checkout repository
5555
uses: actions/checkout@v4
@@ -93,7 +93,7 @@ jobs:
9393
vectorchai/scalellm:latest
9494
9595
publish_scalellm_cuda118:
96-
runs-on: [self-hosted, linux, release]
96+
runs-on: [self-hosted, linux]
9797
steps:
9898
- name: Checkout repository
9999
uses: actions/checkout@v4
@@ -135,4 +135,3 @@ jobs:
135135
tags: |
136136
vectorchai/scalellm_cu118:${{ inputs.tag }}
137137
vectorchai/scalellm_cu118:latest
138-

.github/workflows/publish_devel_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
matrix:
2424
cuda: ["12.6", "12.8"]
2525
gcc: ["12"]
26-
runs-on: [self-hosted, linux, build]
26+
runs-on: [self-hosted, linux]
2727
steps:
2828
- name: Checkout repository
2929
uses: actions/checkout@v4

.github/workflows/publish_manylinux_2_28_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
cuda: ["11.8", "12.6", "12.8"]
25-
runs-on: [self-hosted, linux, build]
25+
runs-on: [self-hosted, linux]
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4

.github/workflows/publish_manylinux_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
cuda: ["11.8", "12.6", "12.8"]
20-
runs-on: [self-hosted, linux, build]
20+
runs-on: [self-hosted, linux]
2121
steps:
2222
- name: Checkout repository
2323
uses: actions/checkout@v4

.github/workflows/publish_wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python: ["3.9", "3.10", "3.11", "3.12"]
2525
cuda: ["12.6"]
2626
torch: ["2.7.0"]
27-
runs-on: [self-hosted, linux, release]
27+
runs-on: [self-hosted, linux]
2828
env:
2929
PYTHON_VERSION: ${{ matrix.python }}
3030
CUDA_VERSION: ${{ matrix.cuda }}

.github/workflows/release_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python: ["3.9", "3.10", "3.11", "3.12"]
2323
cuda: ["12.6"]
2424
torch: ["2.7.0"]
25-
runs-on: [self-hosted, linux, release]
25+
runs-on: [self-hosted, linux, gpu]
2626
env:
2727
PYTHON_VERSION: ${{ matrix.python }}
2828
CUDA_VERSION: ${{ matrix.cuda }}

0 commit comments

Comments
 (0)