mirror of https://github.com/tikv/client-rust.git
specify profile by env
Signed-off-by: Ping Yu <yuping@pingcap.com>
This commit is contained in:
parent
1d6e7d3143
commit
95e437d27c
|
@ -35,6 +35,7 @@ jobs:
|
||||||
name: unit test
|
name: unit test
|
||||||
env:
|
env:
|
||||||
CARGO_INCREMENTAL: 0
|
CARGO_INCREMENTAL: 0
|
||||||
|
NEXTEST_PROFILE: "CI"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
@ -58,6 +59,7 @@ jobs:
|
||||||
case: ["integration-test-txn", "integration-test-raw"]
|
case: ["integration-test-txn", "integration-test-raw"]
|
||||||
env:
|
env:
|
||||||
CARGO_INCREMENTAL: 0
|
CARGO_INCREMENTAL: 0
|
||||||
|
NEXTEST_PROFILE: "CI"
|
||||||
TIKV_VERSION: v8.5.1
|
TIKV_VERSION: v8.5.1
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ export MULTI_REGION ?= 1
|
||||||
|
|
||||||
ALL_FEATURES := integration-tests
|
ALL_FEATURES := integration-tests
|
||||||
|
|
||||||
NEXTEST_ARGS := --config-file $(shell pwd)/config/nextest.toml -P ci
|
NEXTEST_ARGS := --config-file $(shell pwd)/config/nextest.toml
|
||||||
|
|
||||||
INTEGRATION_TEST_ARGS := --features "integration-tests" --test-threads 1
|
INTEGRATION_TEST_ARGS := --features "integration-tests" --test-threads 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue