Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
f983213a
Unverified
Commit
f983213a
authored
Feb 18, 2025
by
Yineng Zhang
Committed by
GitHub
Feb 18, 2025
Browse files
update pr-test (#3663)
parent
67fc595b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
.github/workflows/pr-test.yml
.github/workflows/pr-test.yml
+11
-0
python/sglang/README.md
python/sglang/README.md
+1
-1
No files found.
.github/workflows/pr-test.yml
View file @
f983213a
...
@@ -107,6 +107,7 @@ jobs:
...
@@ -107,6 +107,7 @@ jobs:
bash scripts/ci_install_dependency.sh
bash scripts/ci_install_dependency.sh
-
name
:
Run test
-
name
:
Run test
if
:
github.event.pull_request.head.repo.fork ==
false
env
:
env
:
HF_TOKEN
:
${{ secrets.HF_TOKEN }}
HF_TOKEN
:
${{ secrets.HF_TOKEN }}
timeout-minutes
:
30
timeout-minutes
:
30
...
@@ -117,6 +118,16 @@ jobs:
...
@@ -117,6 +118,16 @@ jobs:
cd test/srt
cd test/srt
python3 run_suite.py --suite per-commit --range-begin ${range_begin} --range-end ${range_end}
python3 run_suite.py --suite per-commit --range-begin ${range_begin} --range-end ${range_end}
-
name
:
Run test (fork)
if
:
github.event.pull_request.head.repo.fork ==
true
timeout-minutes
:
30
run
:
|
RANGE=${{ matrix.range }}
range_begin=${RANGE%-*}
range_end=${RANGE#*-}
cd test/srt
python3 run_suite.py --suite per-commit --range-begin ${range_begin} --range-end ${range_end}
unit-test-backend-2-gpu
:
unit-test-backend-2-gpu
:
needs
:
filter
needs
:
filter
if
:
(github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request') &&
if
:
(github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request') &&
...
...
python/sglang/README.md
View file @
f983213a
...
@@ -11,5 +11,5 @@
...
@@ -11,5 +11,5 @@
-
`check_env.py`
: Check the environment variables.
-
`check_env.py`
: Check the environment variables.
-
`global_config.py`
: The global configs and constants.
-
`global_config.py`
: The global configs and constants.
-
`launch_server.py`
: The entry point for launching the local server.
-
`launch_server.py`
: The entry point for launching the local server.
-
`llama3_eval.py`
: Evaluation of Llama 3
.1
using the Meta Llama dataset.
-
`llama3_eval.py`
: Evaluation of Llama 3 using the Meta Llama dataset.
-
`utils.py`
: Common utilities.
-
`utils.py`
: Common utilities.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment