Skip to content

Commit

Permalink
[CI] move cancel_previous_workflows to ubuntu-latest (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
KuilongCui authored Oct 11, 2024
1 parent 6de3bd7 commit 69051e5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/migration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/offline_inference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
cancel_previous_workflows:
runs-on: [self-hosted]
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e_test/test_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def run_bench_command(command):
assert process.returncode == 0

for i in range(device_count//2):
bench_command = generate_bench_command(ip_ports=f"127.0.0.1:{base_port+i}", model=model, num_prompts=500,
bench_command = generate_bench_command(ip_ports=f"127.0.0.1:{base_port+i}", model=model, num_prompts=300,
dataset_type="sharegpt",
dataset_path="/mnt/dataset/sharegpt_gpt4/sharegpt_gpt4.jsonl" ,
qps=10)
Expand Down

0 comments on commit 69051e5

Please sign in to comment.