-
Notifications
You must be signed in to change notification settings - Fork 733
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release bigdl-llm #5169
Merged
+86
−28
Merged
release bigdl-llm #5169
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0a597ce
release bigdl-llm
liu-shaojun bd13137
update
liu-shaojun d7bc199
update
liu-shaojun e33bc2b
update
liu-shaojun c4807de
revert
liu-shaojun 2c5732a
revert
liu-shaojun 67e2d8b
set bigdl-core-cpp version
liu-shaojun 2e8adce
rename
liu-shaojun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: BigDL-LLM Nightly Build | ||
|
||
on: | ||
# pull_request: | ||
# branches: [ main ] | ||
# paths: | ||
# - '.github/workflows/nightly_build.yml' | ||
schedule: | ||
- cron: '30 12 * * *' # GMT time, 12:30 GMT == 20:30 China | ||
workflow_dispatch: | ||
|
||
env: | ||
GIST_ID: 48dbd87983219d4fe264adfea701815a | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
|
||
# llm-cpp-build: | ||
# uses: ./.github/workflows/llm-binary-build.yml | ||
|
||
bigdl-llm-build: | ||
# python build can only be published once a day, please do not publish it manually | ||
if: ${{ github.event.schedule || github.event_name == 'workflow_dispatch' }} | ||
runs-on: [self-hosted, Bree] | ||
# needs: llm-cpp-build | ||
steps: | ||
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7.15' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
pip install wheel | ||
pip install twine | ||
|
||
# - name: Download llm binary | ||
# uses: ./.github/actions/llm/download-llm-binary | ||
|
||
- name: Build package | ||
run: | | ||
export TIMESTAMP=`date '+%Y%m%d'` | ||
export PYPI_VERSION=2.5.0 | ||
nb_version=${PYPI_VERSION}b${TIMESTAMP} | ||
echo ${nb_version} | ||
|
||
## windows ## | ||
bash python/llm/dev/release_default_windows.sh ${nb_version} true | ||
|
||
## linux ## | ||
bash python/llm/dev/release_default_linux.sh ${nb_version} true |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we fix the version here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code of bigdl-llm has not been updated since 20240324, there may be problems if the core-xe or binary version is not fixed.