mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
/kind improvement pr: #29145 --------- Signed-off-by: longjiquan <jiquan.long@zilliz.com>
This commit is contained in:
parent
9e7974a2c6
commit
03a375ac82
4
.github/workflows/code-checker.yaml
vendored
4
.github/workflows/code-checker.yaml
vendored
@ -27,6 +27,10 @@ on:
|
||||
- .golangci.yml
|
||||
- rules.go
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
ubuntu:
|
||||
name: Code Checker AMD64 Ubuntu 20.04
|
||||
|
||||
4
.github/workflows/mac.yaml
vendored
4
.github/workflows/mac.yaml
vendored
@ -24,6 +24,10 @@ on:
|
||||
- go.mod
|
||||
- go.sum
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
mac:
|
||||
name: Code Checker MacOS 12
|
||||
|
||||
4
.github/workflows/main.yaml
vendored
4
.github/workflows/main.yaml
vendored
@ -35,6 +35,10 @@ on:
|
||||
- '!**.md'
|
||||
- '!build/ci/jenkins/**'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
name: Build and test AMD64 Ubuntu ${{ matrix.ubuntu }}
|
||||
|
||||
4
.github/workflows/publish-builder.yaml
vendored
4
.github/workflows/publish-builder.yaml
vendored
@ -16,6 +16,10 @@ on:
|
||||
- '.github/workflows/publish-builder.yaml'
|
||||
- '!**.md'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
publish-builder:
|
||||
name: ${{ matrix.arch }} ${{ matrix.os }}
|
||||
|
||||
4
.github/workflows/publish-gpu-builder.yaml
vendored
4
.github/workflows/publish-gpu-builder.yaml
vendored
@ -16,6 +16,10 @@ on:
|
||||
- '.github/workflows/publish-gpu-builder.yaml'
|
||||
- '!**.md'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
publish-gpu-builder:
|
||||
name: ${{ matrix.arch }} ${{ matrix.os }}
|
||||
|
||||
4
.github/workflows/publish-krte-images.yaml
vendored
4
.github/workflows/publish-krte-images.yaml
vendored
@ -17,6 +17,10 @@ on:
|
||||
- '.github/workflows/publish-krte-images.yaml'
|
||||
- '!**.md'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
publish-krte-images:
|
||||
name: KRTE
|
||||
|
||||
4
.github/workflows/publish-test-images.yaml
vendored
4
.github/workflows/publish-test-images.yaml
vendored
@ -18,6 +18,10 @@ on:
|
||||
- '.github/workflows/publish-test-images.yaml'
|
||||
- '!**.md'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
publish-pytest-images:
|
||||
name: PyTest
|
||||
|
||||
@ -23,8 +23,9 @@ RUN pip3 install conan==1.61.0
|
||||
RUN echo "target arch $TARGETARCH"
|
||||
RUN wget -qO- "https://cmake.org/files/v3.24/cmake-3.24.4-linux-`uname -m`.tar.gz" | tar --strip-components=1 -xz -C /usr/local
|
||||
|
||||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
|
||||
RUN mkdir /opt/vcpkg && \
|
||||
wget -qO- vcpkg.tar.gz https://github.com/microsoft/vcpkg/archive/master.tar.gz | tar --strip-components=1 -xz -C /opt/vcpkg && \
|
||||
wget -qO- vcpkg.tar.gz https://github.com/microsoft/vcpkg/archive/refs/tags/2023.11.20.tar.gz | tar --strip-components=1 -xz -C /opt/vcpkg && \
|
||||
rm -rf vcpkg.tar.gz
|
||||
|
||||
ENV VCPKG_FORCE_SYSTEM_BINARIES 1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user