Commit 1a3c5ac
committed
test: ab: Add function for A/B-Tests across precompiled binaries
Currently, we have two types of pre-PR A/B-Tests: Those that depend on
the repository as a whole (e.g. `cargo audit`, which checks properties
of Cargo.toml), and those that depend on the pre-compiled firecracker
binaries.
At the moment, these tests can use the same infrastructure, because our
buildkite shared build step will pre-compile binaries and then upload
the entire repository as an artifact, and so both types of A/B-tests
will find what they're looking for in this artifact and end up being
happy. However, this model makes it very difficult to manually run
A/B-tests locally (one will need to setup clones of the git repository
at specific locations and then pre-compile firecracker with specific
flags inside them). This patch series has the goal to simplify these
manual A/B-tests, but the cost is that the pre-PR A/B tests will require
different infrastructure.
Thus, prepare by providing different functions for each of these types
of A/B-test to use.
Signed-off-by: Patrick Roy <[email protected]>1 parent 23ab358 commit 1a3c5ac
1 file changed
+26
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| 32 | + | |
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
35 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
36 | 41 | | |
37 | 42 | | |
38 | 43 | | |
| |||
96 | 101 | | |
97 | 102 | | |
98 | 103 | | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
99 | 124 | | |
100 | 125 | | |
101 | 126 | | |
| |||
0 commit comments