fix the issue that health check may set liveness wrongly #3515
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
integration-local: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.0 | |
- name: Test | |
run: go test ./... | |
working-directory: integration_tests | |
integration-local-race: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.0 | |
- name: Test | |
run: go test ./... -race | |
working-directory: integration_tests | |
integration-tikv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.0 | |
- name: Fetch PD | |
uses: shrink/actions-docker-extract@v1 | |
id: extract-pd | |
with: | |
image: pingcap/pd:nightly | |
path: /pd-server | |
- name: Fetch TiKV | |
uses: shrink/actions-docker-extract@v1 | |
id: extract-tikv | |
with: | |
image: pingcap/tikv:nightly | |
path: /tikv-server | |
- name: Run PD & TiKV | |
run: | | |
mv ../${{steps.extract-pd.outputs.destination}}/pd-server . | |
mv ../${{steps.extract-tikv.outputs.destination}}/tikv-server . | |
./pd-server > pd.log 2>&1 & | |
sleep 5 | |
./tikv-server -C tikv.toml > tikv.log 2>&1 & | |
sleep 15 | |
working-directory: integration_tests | |
- name: Test | |
run: go test --with-tikv | |
working-directory: integration_tests | |
integration-raw-tikv: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
api_version: [v1ttl, v2] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.0 | |
- name: Fetch PD | |
uses: shrink/actions-docker-extract@v1 | |
id: extract-pd | |
with: | |
image: pingcap/pd:nightly | |
path: /pd-server | |
- name: Fetch TiKV | |
uses: shrink/actions-docker-extract@v1 | |
id: extract-tikv | |
with: | |
image: pingcap/tikv:nightly | |
path: /tikv-server | |
- name: Run PD & TiKV | |
run: | | |
mv ../../${{steps.extract-pd.outputs.destination}}/pd-server . | |
mv ../../${{steps.extract-tikv.outputs.destination}}/tikv-server . | |
./pd-server > pd.log 2>&1 & | |
sleep 5 | |
./tikv-server -C tikv-${{ matrix.api_version }}.toml > tikv.log 2>&1 & | |
sleep 15 | |
working-directory: integration_tests/raw | |
- name: Test | |
run: go test --with-tikv | |
working-directory: integration_tests/raw |