From cb526de7403064aee563c742aba81314cebad12b Mon Sep 17 00:00:00 2001 From: Weizhen Wang Date: Fri, 24 Jun 2022 11:46:20 +0800 Subject: [PATCH] *: remove real tikv Signed-off-by: Weizhen Wang --- .../integration-test-with-real-tikv.yml | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/integration-test-with-real-tikv.yml diff --git a/.github/workflows/integration-test-with-real-tikv.yml b/.github/workflows/integration-test-with-real-tikv.yml deleted file mode 100644 index 4b34b539444bd..0000000000000 --- a/.github/workflows/integration-test-with-real-tikv.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Real TiKV Tests - -on: - push: - branches: [master] - pull_request: - branches: [master] - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -jobs: - realtikv-test: - runs-on: ubuntu-latest - - strategy: - matrix: - suite: - - brietest - - pessimistictest - - sessiontest - - statisticstest - - txntest - - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 - with: - go-version: 1.18 - - name: Setup TiKV cluster - run: | - # Disable pipelined pessimistic lock temporarily until tikv#11649 is resolved - echo -e "[pessimistic-txn]\npipelined = false\n" > tikv.toml - echo -e "[raftdb]\nmax-open-files = 20480\n" >> tikv.toml - echo -e "[rocksdb]\nmax-open-files = 20480\n" >> tikv.toml - curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh - $HOME/.tiup/bin/tiup playground nightly --mode tikv-slim --kv 3 --pd 3 --without-monitor --kv.config tikv.toml & - curl --retry-connrefused --retry 5 --retry-delay 5 http://127.0.0.1:2379 - - name: Run Tests - run: | - export log_level=error - make failpoint-enable - go test ./tests/realtikvtest/${{ matrix.suite }} -v -with-real-tikv -timeout 30m