-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (25 loc) · 990 Bytes
/
nightly-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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: ./.github/workflows/build-pypi-package.yml
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