File tree Expand file tree Collapse file tree
build/docker/milvus/ubuntu22.04 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : all-contributors
22
3+ # Disabled in this fork; CI runs via internal pipelines.
34on :
4- schedule :
5- # * is a special character in YAML so you have to quote this string
6- # ┌───────────── minute (0 - 59)
7- # │ ┌───────────── hour (0 - 23)
8- # │ │ ┌───────────── day of the month (1 - 31)
9- # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
10- # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
11- # │ │ │ │ │
12- # │ │ │ │ │
13- # │ │ │ │ │
14- - cron : ' 0 0,12 * * *'
15-
5+ workflow_dispatch :
166jobs :
177 contributor :
188 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : Add Comment for issue
22
3+ # Disabled in this fork; CI runs via internal pipelines.
34on :
4- issues :
5- types : [opened]
6-
5+ workflow_dispatch :
76jobs :
87 check_issue_title :
98 name : Check issue
Original file line number Diff line number Diff line change 11name : Code Checker
22# TODO: do not trigger action for some document file update
33
4- # This workflow is triggered on pushes or pull request to the repository .
4+ # Disabled in this fork; CI runs via internal pipelines .
55on :
6- push :
7- branches :
8- - master
9- pull_request :
10- # file paths to consider in the event. Optional; defaults to all.
11- paths :
12- - ' scripts/**'
13- - ' internal/**'
14- - ' pkg/**'
15- - ' client/**'
16- - ' cmd/**'
17- - ' build/**'
18- - ' tests/integration/**'
19- - ' tests/go_client/**'
20- - ' .github/workflows/code-checker.yaml'
21- - ' .env'
22- - docker-compose.yml
23- - Makefile
24- - ' !**.md'
25- - ' !build/ci/jenkins/**'
26- # FIXME(wxyu): not need to run code check, update the ci-passed rules and remove these two lines
27- - go.mod
28- - go.sum
29- - .golangci.yml
30- - rules.go
31-
6+ workflow_dispatch :
327concurrency :
338 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
349 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
Original file line number Diff line number Diff line change 11name : Daily Release
2+ # Disabled in this fork; CI runs via internal pipelines.
23on :
3- schedule :
4- # * is a special character in YAML so you have to quote this string
5- # ┌───────────── minute (0 - 59)
6- # │ ┌───────────── hour (0 - 23)
7- # │ │ ┌───────────── day of the month (1 - 31)
8- # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
9- # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
10- # │ │ │ │ │
11- # │ │ │ │ │
12- # │ │ │ │ │
13- - cron : ' 0 18 * * *'
14-
4+ workflow_dispatch :
155jobs :
166 nightly :
177 name : Run Daily Release
Original file line number Diff line number Diff line change @@ -2,13 +2,9 @@ name: Jenkins Checker
22# Lint Jenkinsfile and related groovy files
33
44
5+ # Disabled in this fork; CI runs via internal pipelines.
56on :
6- pull_request :
7- # file paths to consider in the event. Optional; defaults to all.
8- paths :
9- - ' build/ci/jenkins/**.groovy'
10- - ' ci/jenkins/**.groovy'
11- - ' .github/workflows/jenkins-checker.yaml'
7+ workflow_dispatch :
128jobs :
139 check-jenkinsfile :
1410 name : Jenkinsfile Checker
Original file line number Diff line number Diff line change 11name : Mac Code Checker
22
3- # This workflow is triggered on pushes or pull request to the repository .
3+ # Disabled in this fork; CI runs via internal pipelines .
44on :
5- push :
6- branches :
7- - master
8- pull_request :
9- # file paths to consider in the event. Optional; defaults to all.
10- paths :
11- - ' scripts/**'
12- - ' internal/**'
13- - ' pkg/**'
14- - ' client/**'
15- - ' cmd/**'
16- - ' build/**'
17- - ' tests/integration/**'
18- - ' tests/go_client/**'
19- - ' .github/workflows/mac.yaml'
20- - ' .env'
21- - docker-compose.yml
22- - Makefile
23- - ' !**.md'
24- - ' !build/ci/jenkins/**'
25- # FIXME(wxyu): not need to run code check, update the ci-passed rules and remove these two lines
26- - go.mod
27- - go.sum
28-
5+ workflow_dispatch :
296concurrency :
307 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
318 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
Original file line number Diff line number Diff line change 11name : Build and test
22
3- # This workflow is triggered on pushes or pull request to the repository .
3+ # Disabled in this fork; CI runs via internal pipelines .
44on :
5- push :
6- # file paths to consider in the event. Optional; defaults to all.
7- paths :
8- - ' scripts/**'
9- - ' internal/**'
10- - ' client/**'
11- - ' pkg/**'
12- - ' cmd/**'
13- - ' build/**'
14- - ' tests/integration/**' # run integration test
15- - ' .github/workflows/main.yaml'
16- - ' .env'
17- - docker-compose.yml
18- - Makefile
19- - go.mod
20- - ' !**.md'
21- - ' !build/ci/jenkins/**'
22- pull_request :
23- # file paths to consider in the event. Optional; defaults to all.
24- paths :
25- - ' scripts/**'
26- - ' internal/**'
27- - ' pkg/**'
28- - ' client/**'
29- - ' cmd/**'
30- - ' build/**'
31- - ' tests/integration/**' # run integration test
32- - ' .github/workflows/main.yaml'
33- - ' .env'
34- - docker-compose.yml
35- - Makefile
36- - go.mod
37- - ' !**.md'
38- - ' !build/ci/jenkins/**'
39-
5+ workflow_dispatch :
406concurrency :
417 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
428 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
Original file line number Diff line number Diff line change 11name : Markdown Links Check
2+ # Disabled in this fork; CI runs via internal pipelines.
23on :
34 workflow_dispatch :
4- schedule :
5- - cron : " 30 20 * * *"
6-
75jobs :
86 check-links :
97 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11name : Publish Builder
22# TODO: do not trigger action for some document file update
33
4- # This workflow is triggered on pushes or pull request to the repository .
4+ # Disabled in this fork; CI runs via internal pipelines .
55on :
6- push :
7- # file paths to consider in the event. Optional; defaults to all.
8- paths :
9- - ' build/docker/builder/cpu/**'
10- - ' .github/workflows/publish-builder.yaml'
11- - ' !**.md'
12- pull_request :
13- # file paths to consider in the event. Optional; defaults to all.
14- paths :
15- - ' build/docker/builder/cpu/**'
16- - ' .github/workflows/publish-builder.yaml'
17- - ' !**.md'
18-
6+ workflow_dispatch :
197concurrency :
208 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
219 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
4634 - name : Checkout
4735 uses : actions/checkout@v2
4836 - name : Get version from system time after release step
49- id : extracter
37+ id : extractor
5038 run : |
5139 echo "::set-output name=version::$(date +%Y%m%d)"
5240 echo "::set-output name=sha_short::$(git rev-parse --short=7 HEAD)"
8573 uses : ./.github/actions/bump-builder-version
8674 if : success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus' && matrix.os == 'ubuntu22.04'
8775 with :
88- tag : " ${{ steps.extracter .outputs.version }}-${{ steps.extracter .outputs.sha_short }}"
76+ tag : " ${{ steps.extractor .outputs.version }}-${{ steps.extractor .outputs.sha_short }}"
8977 type : cpu
9078 token : ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
Original file line number Diff line number Diff line change 11name : Publish Gpu Builder
22# TODO: do not trigger action for some document file update
33
4- # This workflow is triggered on pushes or pull request to the repository .
4+ # Disabled in this fork; CI runs via internal pipelines .
55on :
6- push :
7- # file paths to consider in the event. Optional; defaults to all.
8- paths :
9- - ' build/docker/builder/gpu/**'
10- - ' .github/workflows/publish-gpu-builder.yaml'
11- - ' !**.md'
12- pull_request :
13- # file paths to consider in the event. Optional; defaults to all.
14- paths :
15- - ' build/docker/builder/gpu/**'
16- - ' .github/workflows/publish-gpu-builder.yaml'
17- - ' !**.md'
186 workflow_dispatch :
197 inputs :
208 RunnerHost :
3725 - name : Checkout
3826 uses : actions/checkout@v2
3927 - name : Get version from system time after release step
40- id : extracter
28+ id : extractor
4129 run : |
4230 echo "version=$(date +%Y%m%d)" >> $GITHUB_OUTPUT
4331 echo "sha_short=$(git rev-parse --short=7 HEAD)" >> $GITHUB_OUTPUT
7664 if : success() && github.event_name == 'push' && github.repository == 'milvus-io/milvus' && ${{ env.OS == 'ubuntu22.04' }}
7765 uses : ./.github/actions/bump-builder-version
7866 with :
79- tag : " ${{ steps.extracter .outputs.version }}-${{ steps.extracter .outputs.sha_short }}"
67+ tag : " ${{ steps.extractor .outputs.version }}-${{ steps.extractor .outputs.sha_short }}"
8068 type : gpu
8169 token : ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
You can’t perform that action at this time.
0 commit comments