Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyncs committed Dec 8, 2024
1 parent e45583a commit 34ce9d3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/experiment-runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Experiment Runner

on:
workflow_dispatch:

concurrency:
group: experiment-runner-${{ github.ref }}
cancel-in-progress: true

jobs:
experiment-runner-1-gpu:
if: github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request'
runs-on: 1-gpu-runner
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: |
bash scripts/ci_install_dependency.sh
- name: Test experiment runner
timeout-minutes: 10
run: |
cd test/srt
python3 experiment_runner.py --config configs/sharegpt_config.yaml

0 comments on commit 34ce9d3

Please sign in to comment.