2020-10-19 10:36:40 +08:00
|
|
|
name: Build and test
|
|
|
|
|
|
|
|
# This workflow is triggered on pushes or pull request to the repository.
|
|
|
|
on:
|
2021-07-20 15:34:14 +08:00
|
|
|
push:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
|
|
|
- 'scripts/**'
|
|
|
|
- 'internal/**'
|
2023-04-11 10:32:31 +08:00
|
|
|
- 'pkg/**'
|
2021-07-20 15:34:14 +08:00
|
|
|
- 'cmd/**'
|
|
|
|
- 'build/**'
|
2023-05-11 09:51:19 +08:00
|
|
|
- 'tests/integration' # run integration test
|
2021-07-20 15:34:14 +08:00
|
|
|
- '.github/workflows/main.yaml'
|
|
|
|
- '.env'
|
|
|
|
- docker-compose.yml
|
|
|
|
- Makefile
|
2021-09-01 15:59:11 +08:00
|
|
|
- go.mod
|
2021-07-20 15:34:14 +08:00
|
|
|
- '!**.md'
|
|
|
|
- '!build/ci/jenkins/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
pull_request:
|
|
|
|
# file paths to consider in the event. Optional; defaults to all.
|
|
|
|
paths:
|
2020-10-24 11:36:42 +08:00
|
|
|
- 'scripts/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
- 'internal/**'
|
2023-04-11 10:32:31 +08:00
|
|
|
- 'pkg/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
- 'cmd/**'
|
2020-11-16 21:11:52 +08:00
|
|
|
- 'build/**'
|
2023-05-11 09:51:19 +08:00
|
|
|
- 'tests/integration' # run integration test
|
2020-10-27 15:51:16 +08:00
|
|
|
- '.github/workflows/main.yaml'
|
2020-11-14 16:01:12 +08:00
|
|
|
- '.env'
|
2020-10-19 10:36:40 +08:00
|
|
|
- docker-compose.yml
|
2020-11-03 11:25:47 +08:00
|
|
|
- Makefile
|
2021-09-01 15:59:11 +08:00
|
|
|
- go.mod
|
2020-10-19 10:36:40 +08:00
|
|
|
- '!**.md'
|
2021-05-14 18:23:30 +08:00
|
|
|
- '!build/ci/jenkins/**'
|
2020-10-19 10:36:40 +08:00
|
|
|
|
|
|
|
jobs:
|
2023-04-06 15:56:28 +08:00
|
|
|
Build:
|
2021-04-29 10:19:41 +08:00
|
|
|
name: Build and test AMD64 Ubuntu ${{ matrix.ubuntu }}
|
2021-12-21 12:05:18 +08:00
|
|
|
runs-on: ubuntu-${{ matrix.ubuntu }}
|
2023-02-16 17:26:35 +08:00
|
|
|
timeout-minutes: 180
|
2020-10-27 15:51:16 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-08-26 10:06:54 +08:00
|
|
|
ubuntu: [20.04]
|
2020-10-27 15:51:16 +08:00
|
|
|
env:
|
|
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
2020-10-19 10:36:40 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2023-01-19 13:43:44 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: 'Check Changed files'
|
|
|
|
id: changed-files-cpp
|
|
|
|
uses: tj-actions/changed-files@v35
|
|
|
|
with:
|
|
|
|
since_last_remote_commit: 'true'
|
|
|
|
files: |
|
|
|
|
**/*.cpp
|
|
|
|
**/*.cc
|
|
|
|
**/*.c
|
|
|
|
**/*.h
|
|
|
|
**/*.hpp
|
|
|
|
**/*.CMakeLists.txt
|
2023-02-16 17:26:35 +08:00
|
|
|
**/conanfile.*
|
2023-01-19 13:43:44 +08:00
|
|
|
- name: 'Setup Use USE_ASAN'
|
|
|
|
if: steps.changed-files-cpp.outputs.any_changed == 'true'
|
|
|
|
run: |
|
2023-02-16 17:26:35 +08:00
|
|
|
echo "useasan=true" >> $GITHUB_ENV
|
|
|
|
echo "Setup USE_ASAN to true since cpp file(s) changed"
|
2022-11-23 10:39:11 +08:00
|
|
|
- name: 'Generate CCache Hash'
|
2022-05-31 10:12:02 +08:00
|
|
|
env:
|
2023-02-16 09:18:36 +08:00
|
|
|
CORE_HASH: ${{ hashFiles( 'internal/core/**/*.cpp', 'internal/core/**/*.cc', 'internal/core/**/*.c', 'internal/core/**/*.h', 'internal/core/**/*.hpp', 'internal/core/**/CMakeLists.txt', 'internal/core/conanfile.py') }}
|
2022-05-31 10:12:02 +08:00
|
|
|
run: |
|
|
|
|
echo "corehash=${CORE_HASH}" >> $GITHUB_ENV
|
|
|
|
echo "Set CCache hash to ${CORE_HASH}"
|
2020-12-09 20:07:27 +08:00
|
|
|
- name: Cache CCache Volumes
|
2023-02-20 21:14:25 +08:00
|
|
|
# uses: actions/cache@v3
|
|
|
|
uses: pat-s/always-upload-cache@v3
|
2020-10-27 15:51:16 +08:00
|
|
|
with:
|
2020-12-09 20:07:27 +08:00
|
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-ccache
|
2022-05-31 10:12:02 +08:00
|
|
|
key: ubuntu${{ matrix.ubuntu }}-ccache-${{ env.corehash }}
|
2020-12-09 20:07:27 +08:00
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-ccache-
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: Cache Conan Packages
|
|
|
|
uses: pat-s/always-upload-cache@v3
|
2020-12-09 20:07:27 +08:00
|
|
|
with:
|
2023-04-06 15:56:28 +08:00
|
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-conan
|
|
|
|
key: ubuntu${{ matrix.ubuntu }}-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-conan-
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2023-04-21 14:16:33 +08:00
|
|
|
./build/builder.sh /bin/bash -c "make USE_ASAN=${{env.useasan}} build-cpp-with-coverage"
|
2023-04-10 08:24:30 +08:00
|
|
|
- run: |
|
|
|
|
zip -r code.zip . -x "./.docker/*"
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: Archive code
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: code
|
2023-04-10 08:24:30 +08:00
|
|
|
path: code.zip
|
2023-04-06 15:56:28 +08:00
|
|
|
UT-Cpp:
|
|
|
|
name: UT for Cpp
|
|
|
|
needs: Build
|
|
|
|
runs-on: ubuntu-${{ matrix.ubuntu }}
|
2023-04-10 08:24:30 +08:00
|
|
|
timeout-minutes: 60
|
2023-04-06 15:56:28 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
ubuntu: [20.04]
|
|
|
|
env:
|
|
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
|
|
|
steps:
|
|
|
|
- name: Download code
|
|
|
|
uses: actions/download-artifact@v3.0.1
|
|
|
|
with:
|
|
|
|
name: code
|
2023-04-10 08:24:30 +08:00
|
|
|
- run: |
|
|
|
|
unzip code.zip
|
|
|
|
rm code.zip
|
2022-11-23 10:39:11 +08:00
|
|
|
- name: Cache Conan Packages
|
2023-02-20 21:14:25 +08:00
|
|
|
uses: pat-s/always-upload-cache@v3
|
2022-11-23 10:39:11 +08:00
|
|
|
with:
|
|
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-conan
|
2022-12-13 11:27:21 +08:00
|
|
|
key: ubuntu${{ matrix.ubuntu }}-conan-${{ hashFiles('internal/core/conanfile.*') }}
|
2022-11-23 10:39:11 +08:00
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-conan-
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: UT
|
|
|
|
run: |
|
|
|
|
chmod +x build/builder.sh
|
|
|
|
chmod +x scripts/*
|
|
|
|
chmod +x internal/core/output/unittest/*
|
|
|
|
./build/builder.sh /bin/bash -c ./scripts/run_cpp_codecov.sh
|
|
|
|
- name: Archive result
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: cpp-result
|
|
|
|
path: |
|
|
|
|
./go_coverage.txt
|
|
|
|
./lcov_output.info
|
|
|
|
*.info
|
|
|
|
*.out
|
|
|
|
UT-Go:
|
|
|
|
name: UT for Go
|
|
|
|
needs: Build
|
|
|
|
runs-on: ubuntu-${{ matrix.ubuntu }}
|
2023-04-10 08:24:30 +08:00
|
|
|
timeout-minutes: 60
|
2023-04-06 15:56:28 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
ubuntu: [20.04]
|
|
|
|
env:
|
|
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
|
|
|
steps:
|
|
|
|
- name: Download code
|
|
|
|
uses: actions/download-artifact@v3.0.1
|
|
|
|
with:
|
|
|
|
name: code
|
2023-04-10 08:24:30 +08:00
|
|
|
- run: |
|
|
|
|
unzip code.zip
|
|
|
|
rm code.zip
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: Cache Go Mod Volumes
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-go-mod
|
|
|
|
key: ubuntu${{ matrix.ubuntu }}-go-mod-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-go-mod-
|
2020-11-09 18:47:37 +08:00
|
|
|
- name: Start Service
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-12-07 15:22:20 +08:00
|
|
|
docker-compose up -d pulsar etcd minio
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: UT
|
2020-10-19 10:36:40 +08:00
|
|
|
run: |
|
2023-04-06 15:56:28 +08:00
|
|
|
chmod +x build/builder.sh
|
|
|
|
chmod +x scripts/run_go_codecov.sh
|
|
|
|
./build/builder.sh /bin/bash -c ./scripts/run_go_codecov.sh
|
|
|
|
- name: Archive result
|
2022-11-08 19:59:03 +08:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-04-06 15:56:28 +08:00
|
|
|
name: go-result
|
2022-11-08 19:59:03 +08:00
|
|
|
path: |
|
|
|
|
./go_coverage.txt
|
|
|
|
./lcov_output.info
|
|
|
|
*.info
|
|
|
|
*.out
|
2023-04-07 15:42:32 +08:00
|
|
|
.git
|
2023-05-09 19:18:41 +08:00
|
|
|
integration-test:
|
|
|
|
name: Integration Test
|
|
|
|
needs: Build
|
|
|
|
runs-on: ubuntu-${{ matrix.ubuntu }}
|
|
|
|
timeout-minutes: 60
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
ubuntu: [20.04]
|
|
|
|
env:
|
|
|
|
UBUNTU: ${{ matrix.ubuntu }}
|
|
|
|
steps:
|
|
|
|
- name: Download code
|
|
|
|
uses: actions/download-artifact@v3.0.1
|
|
|
|
with:
|
|
|
|
name: code
|
|
|
|
- run: |
|
|
|
|
unzip code.zip
|
|
|
|
rm code.zip
|
|
|
|
- name: Cache Go Mod Volumes
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: .docker/amd64-ubuntu${{ matrix.ubuntu }}-go-mod
|
|
|
|
key: ubuntu${{ matrix.ubuntu }}-go-mod-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ubuntu${{ matrix.ubuntu }}-go-mod-
|
|
|
|
- name: Start Service
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
docker-compose up -d pulsar etcd minio
|
|
|
|
- name: IntegrationTest
|
2023-05-15 14:45:21 +08:00
|
|
|
#continue-on-error: true # do not impact ci-passed for now
|
2023-05-09 19:18:41 +08:00
|
|
|
run: |
|
|
|
|
chmod +x build/builder.sh
|
|
|
|
chmod +x scripts/run_intergration_test.sh
|
|
|
|
./build/builder.sh /bin/bash -c ./scripts/run_intergration_test.sh
|
2022-11-08 19:59:03 +08:00
|
|
|
codecov:
|
|
|
|
name: Upload Code Coverage
|
2023-04-06 15:56:28 +08:00
|
|
|
needs: [UT-Cpp, UT-Go]
|
2022-11-08 19:59:03 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
2023-04-06 15:56:28 +08:00
|
|
|
- name: Download Cpp code coverage results
|
|
|
|
uses: actions/download-artifact@v3.0.1
|
|
|
|
with:
|
|
|
|
name: cpp-result
|
|
|
|
- name: Download Go code coverage results
|
2022-11-08 19:59:03 +08:00
|
|
|
uses: actions/download-artifact@v3.0.1
|
|
|
|
with:
|
2023-04-06 15:56:28 +08:00
|
|
|
name: go-result
|
2022-11-08 19:59:03 +08:00
|
|
|
- name: Display structure of code coverage results
|
2022-11-23 09:53:21 +08:00
|
|
|
run: |
|
|
|
|
ls -lah
|
2022-12-13 11:27:21 +08:00
|
|
|
|
2021-07-16 14:52:21 +08:00
|
|
|
- name: Upload coverage to Codecov
|
2021-11-24 06:49:15 +08:00
|
|
|
if: "github.repository == 'milvus-io/milvus'"
|
2022-09-27 11:36:55 +08:00
|
|
|
uses: codecov/codecov-action@v3.1.1
|
2022-06-16 09:52:10 +08:00
|
|
|
id: upload_cov
|
2021-07-16 14:52:21 +08:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
2021-10-19 14:52:34 +08:00
|
|
|
files: ./go_coverage.txt,./lcov_output.info
|
2022-11-08 19:59:03 +08:00
|
|
|
name: ubuntu-20.04-unittests
|
2022-09-06 12:39:11 +08:00
|
|
|
fail_ci_if_error: true
|
2022-11-23 10:39:11 +08:00
|
|
|
- name: Retry Upload coverage to Codecov
|
|
|
|
if: "${{ failure() }} && github.repository == 'milvus-io/milvus'"
|
|
|
|
uses: codecov/codecov-action@v3.1.1
|
|
|
|
id: retry_upload_cov
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
files: ./go_coverage.txt,./lcov_output.info
|
|
|
|
name: ubuntu-${{ matrix.ubuntu }}-unittests
|
|
|
|
fail_ci_if_error: true
|