Skip to content

Commit b322a96

Browse files
committed
ci: skip unsupported gpt oss gpu cases
Signed-off-by: Sumanth Kamenani <skamenan@redhat.com>
1 parent 5050d6e commit b322a96

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/launch-gpu-ec2-runner.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ jobs:
127127
setup: 'vllm-gpu-gpt-oss'
128128
inference-mode: 'record'
129129
suite: ${{ inputs.suite }}
130+
pattern: ${{ inputs.suite == 'base' && 'not (test_openai_completion_guided_choice or test_multiple_tools_with_different_schemas or test_mcp_invocation)' || '' }}
130131
skip-commit: 'true' # Don't commit here - upload as artifacts
131132

132133
- name: Upload recordings as artifacts

.github/workflows/record-vllm-gpu-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ jobs:
127127
setup: 'vllm-gpu-gpt-oss'
128128
inference-mode: 'record'
129129
suite: ${{ inputs.suite }}
130+
pattern: ${{ inputs.suite == 'base' && 'not (test_openai_completion_guided_choice or test_multiple_tools_with_different_schemas or test_mcp_invocation)' || '' }}
130131
skip-commit: 'true' # Don't commit here - upload as artifacts
131132

132133
- name: Upload recordings as artifacts

scripts/integration-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ if [[ "$STACK_CONFIG" == *"server:"* && "$COLLECT_ONLY" == false ]]; then
347347

348348
stop_server() {
349349
echo "Stopping OGX Server..."
350-
pids=$(lsof -i :$OGX_PORT | awk 'NR>1 {print $2}')
350+
pids=$(lsof -i :$OGX_PORT 2>/dev/null | awk 'NR>1 {print $2}' || true)
351351
if [[ -n "$pids" ]]; then
352352
echo "Killing OGX Server processes: $pids"
353353
kill -9 $pids

0 commit comments

Comments
 (0)