[skip e2e] Delete windows code-checker (#20783)

Signed-off-by: Bennu-Li <yunmei.li@zilliz.com>

Signed-off-by: Bennu-Li <yunmei.li@zilliz.com>
This commit is contained in:
Bennu 2022-11-23 16:01:12 +08:00 committed by GitHub
parent 1eabfdb199
commit 1f65c9f337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,54 +117,3 @@ jobs:
OS_NAME: 'centos7'
run: |
./build/builder.sh /bin/bash -c "make install"
mingw64:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
include:
- name: Code Checker MinGW
os: windows-2019
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v2
- name: Cache go
uses: actions/cache@v3
with:
path: |
%LocalAppData%\go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Cache ccache
uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/.ccache
key: ${{ runner.os }}-ccache-${{ hashFiles('internal/core/**') }}
restore-keys: ${{ runner.os }}-ccache-
- name: Configure Toolchain
uses: msys2/setup-msys2@v2.12.0
with:
msystem: mingw64
- name: Install Deps
shell: msys2 {0}
run: |
sh scripts/install_deps_msys.sh
- name: Code Check
shell: msys2 {0}
env:
CCACHE_COMPILERCHECK: content
CCACHE_COMPRESS: 1
CCACHE_COMPRESSLEVEL: 5
CCACHE_MAXSIZE: 2G
CCACHE_DIR: ${{ github.workspace }}/.ccache
run: |
go version
mingw32-make verifiers milvus