You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Quick Test mode allows running CI tests using pre-built binaries from a previous successful pipeline, skipping the ~20 minute C++ build step. This is useful when:
39
+
40
+
- You're only changing test code, not hived source
41
+
- You want fast feedback on test changes
42
+
- You're debugging flaky tests
43
+
44
+
### Usage
45
+
46
+
Run a pipeline with these variables:
47
+
48
+
| Variable | Required | Description |
49
+
|----------|----------|-------------|
50
+
|`QUICK_TEST`| Yes | Set to `true` to enable |
51
+
|`QUICK_TEST_BINARY_COMMIT`| No | Specific commit SHA to use (auto-detects if empty) |
52
+
|`QUICK_TEST_JOBS`| No | Additional test jobs to run (comma-separated) |
53
+
|`QUICK_TEST_BLOCK_LOG_IMAGE`| No | Block log image for test_tools_tests |
54
+
55
+
**Example - Basic quick test:**
56
+
```bash
57
+
glab ci run -b my-branch --variables QUICK_TEST:true
58
+
```
59
+
60
+
**Example - With specific binary commit:**
61
+
```bash
62
+
glab ci run -b my-branch --variables QUICK_TEST:true --variables QUICK_TEST_BINARY_COMMIT:abc1234f
0 commit comments