mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
c27f477b6c
issue: #37269 Signed-off-by: xianliang.li <xianliang.li@zilliz.com>
77 lines
3.2 KiB
YAML
77 lines
3.2 KiB
YAML
name: Update Knowhere Commit
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# * is a special character in YAML so you have to quote this string
|
|
# ┌───────────── minute (0 - 59)
|
|
# │ ┌───────────── hour (0 - 23)
|
|
# │ │ ┌───────────── day of the month (1 - 31)
|
|
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
|
|
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
- cron: '0 15 * * *'
|
|
|
|
|
|
jobs:
|
|
update-knowhere-commits:
|
|
name: update-knowhere-commit
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
OS_NAME: ubuntu20.04
|
|
timeout-minutes: 60
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: get knowhere latest commit
|
|
id: get-knowhere-latest-commit
|
|
run: |
|
|
cd ..
|
|
rm -fr Knowhere
|
|
git clone https://github.com/zilliztech/Knowhere.git
|
|
cd Knowhere
|
|
export commit=$(git rev-parse --short HEAD)
|
|
echo $commit
|
|
echo "::set-output name=knowhere-commit::$commit"
|
|
cd ../milvus
|
|
- name: Update Commit Changes
|
|
continue-on-error: true
|
|
shell: bash
|
|
run: |
|
|
sed -i "0,/(\ KNOWHERE_VERSION/ s#( KNOWHERE_VERSION.*#( KNOWHERE_VERSION ${{ steps.get-knowhere-latest-commit.outputs.knowhere-commit }} )#g" internal/core/thirdparty/knowhere/CMakeLists.txt
|
|
head -n 17 internal/core/thirdparty/knowhere/CMakeLists.txt
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git add internal/core/thirdparty/knowhere/CMakeLists.txt
|
|
git commit -m "Update knowhere commit"
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
continue-on-error: true
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }}
|
|
author: sre-ci-robot <sre-ci-robot@users.noreply.github.com>
|
|
signoff: true
|
|
branch: update_knowhere_commit_${{ github.sha }}
|
|
delete-branch: true
|
|
title: '[automated] Update Knowhere Commit'
|
|
body: |
|
|
Update Knowhere Commit
|
|
Signed-off-by: sre-ci-robot sre-ci-robot@users.noreply.github.com
|
|
- name: Check outputs
|
|
run: |
|
|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
|
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
|
- name: Send Message To Feishu
|
|
env:
|
|
ACTIONS_FEISHU_TAG: 'v1.3.1'
|
|
INPUT_WEBHOOK: "${{ secrets.FEISHU_WEBHOOK_KNOWHERE_COMMIT_BOT }}"
|
|
INPUT_MESSAGE_TYPE: text
|
|
INPUT_CONTENT: "Pr url by rebot: ${{ steps.cpr.outputs.pull-request-url }}"
|
|
run: |
|
|
wget -q https://github.com/xiachufang/actions-feishu/releases/download/${{ env.ACTIONS_FEISHU_TAG }}/linux-amd64-actions-feishu.tar.gz
|
|
tar zxf linux-amd64-actions-feishu.tar.gz feishu
|
|
./feishu
|