Commit f032697
authored
Performance history canary (#1209)
This PR adds a "canary" build to the performance regression CI of
OpenJDK. The "canary" is a chosen revision of mmtk-core and mmtk-openjdk
that is tested alongside each merged PR. The performance of the "canary"
should not change unless there is an environment change or there is a
noise. Spotting a change in the "canary" performance can help us
identify environment changes that are unintended or otherwise unnoticed,
and also identify the noise level.
Currently, we choose a specific release version as the version of the
"canary". Using a release version has the advantage of being easy to
specify the exact revision of both the mmtk-core and the mmtk-openjdk
repository. We may also switch to some methods of automatically select
the canary version in the future.
There are other minor changes made.
- We slightly change the directory structure. We create two directory,
namely `latest` and `canary`. In each of the directories, we check out
`mmtk-core` and `mmtk-openjdk` of the latest and the canary versions,
respectively.
- We use the `ci-replace-mmtk-dep.py` script to replace the revision of
the `mmtk-core` dependency in `mmtk-openjdk`. As a result, we no longer
need to use `sed`, and no longer need to copy the `mmtk-core` directory
into `mmtk-openjdk/repos`.
- We no longer set the `RUSTUP_TOOLCHAIN` environment variable because
1. The latest and the canary version may not use the same toolchain,
and,
2. the right toolchain will be chosen when running the `cargo` command
according to the `rust-toolchain` file in the directory.
- The scripts in https://github.com/mmtk/ci-perf-kit are changed to take
the canary into consideration, too.1 parent 80b11a0 commit f032697
1 file changed
+62
-23
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
100 | 119 | | |
101 | | - | |
| 120 | + | |
| 121 | + | |
102 | 122 | | |
103 | 123 | | |
104 | | - | |
105 | | - | |
| 124 | + | |
| 125 | + | |
106 | 126 | | |
107 | 127 | | |
108 | 128 | | |
109 | | - | |
110 | | - | |
111 | | - | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
112 | 132 | | |
113 | 133 | | |
114 | 134 | | |
115 | 135 | | |
116 | 136 | | |
117 | 137 | | |
118 | 138 | | |
119 | | - | |
| 139 | + | |
120 | 140 | | |
121 | | - | |
122 | 141 | | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
127 | | - | |
128 | | - | |
129 | | - | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
130 | 156 | | |
131 | | - | |
132 | | - | |
133 | | - | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
134 | 160 | | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
139 | 175 | | |
140 | 176 | | |
141 | 177 | | |
| |||
145 | 181 | | |
146 | 182 | | |
147 | 183 | | |
148 | | - | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
149 | 188 | | |
150 | 189 | | |
151 | 190 | | |
| |||
0 commit comments