Skip to content

Commit

Permalink
Create nightly-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
liu-shaojun authored Aug 19, 2024
1 parent c6eda34 commit d1e203a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: LLM Nightly Build & Release

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
schedule:
- cron: '*/5 * * * *' # GMT time, 6:50 GMT == 12:50 China
workflow_dispatch:
inputs:
pypi-version:
description: 'pypi version (e.g. 2.5.0.dev0)'
required: false
default: ''
type: string

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
trigger-bigdl-core-xxx-for-py311:
uses: liu-shaojun/test-repo/.github/workflows/build-pypi-package.yml@main
with:
python-version: '3.11'
pypi-version: ${{ (github.event_name == 'schedule') && '' || ( github.event_name == 'workflow_dispatch' ) && inputs.pypi-version }}
release-bigdl-core-xe: true
release-bigdl-core-xe-win: true
release-bigdl-core-xe-batch: true
release-bigdl-core-xe-batch-win: true
release-bigdl-core-xe-addons-for-linux-and-windows: true
release-bigdl-core-cpp: true
release-bigdl-core-cpp-win: true
release-bigdl-core-npu-win: true

0 comments on commit d1e203a

Please sign in to comment.