-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into vllm_upgrade
- Loading branch information
Showing
72 changed files
with
1,930 additions
and
969 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,15 +20,15 @@ jobs: | |
bench_tests: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 60 | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Kill Running Containers | ||
run: | | ||
[[ -n $(docker ps -q) ]] && docker kill $(docker ps -q) || echo "No running containers to kill." | ||
- name: Build And Test | ||
run: ./tools/bench_test.sh | ||
run: ./tools/run_test.sh bench_test | ||
- name: Create comment from file | ||
if: ${{ github.event_name != 'push' }} | ||
uses: actions/github-script@v7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,12 +20,12 @@ jobs: | |
e2e_tests: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 60 | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Kill Running Containers | ||
run: | | ||
[[ -n $(docker ps -q) ]] && docker kill $(docker ps -q) || echo "No running containers to kill." | ||
- name: Build And Test | ||
run: ./tools/e2e_test.sh | ||
run: ./tools/run_test.sh e2e_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,15 +20,15 @@ jobs: | |
migration_tests: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 60 | ||
timeout-minutes: 90 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Kill Running Containers | ||
run: | | ||
[[ -n $(docker ps -q) ]] && docker kill $(docker ps -q) || echo "No running containers to kill." | ||
- name: Build And Test | ||
run: ./tools/migration_test.sh | ||
run: ./tools/run_test.sh migration_test | ||
- name: Create comment from file | ||
if: ${{ github.event_name != 'push' }} | ||
uses: actions/github-script@v7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,13 +20,8 @@ jobs: | |
offline_inference: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 10 | ||
timeout-minutes: 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run offline inference example | ||
run: | | ||
nvidia-docker run --rm -t --net host --ipc host \ | ||
-v ${PWD}:/workspace \ | ||
-w /workspace \ | ||
registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ | ||
bash -c "pip install -e . > /dev/null && make offline_test" | ||
run: ./tools/run_test.sh offline_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,7 +20,7 @@ jobs: | |
pylint_test: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 10 | ||
timeout-minutes: 5 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Analysing the code with pylint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
jobs: | ||
cancel_previous_workflows: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
|
@@ -20,12 +20,12 @@ jobs: | |
unit_tests: | ||
needs: cancel_previous_workflows | ||
runs-on: [self-hosted] | ||
timeout-minutes: 60 | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Kill Running Containers | ||
run: | | ||
[[ -n $(docker ps -q) ]] && docker kill $(docker ps -q) || echo "No running containers to kill." | ||
- name: Build And Test | ||
run: ./tools/unit_test.sh | ||
run: ./tools/run_test.sh unit_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.