Commit 5805dd4
Merge #157759
157759: roachtest: fix conditional build for arm64 and fips r=herkolategan a=golgeek
PR #157158 introduced a conditional build for ARM64 and FIPS architectures based on the metamorphic probability flags.
The initial implementation used `bc` to compare floating point, but the command is not available on the TeamCity agents:
```
build/teamcity/cockroach/nightlies/roachtest_nightly_impl.sh: line 39: bc: command not found
```
This patch uses `awk` in place of `bc`.
Epic: none
Release note: None
Co-authored-by: Ludovic Leroux <[email protected]>1 file changed
+4
-4
lines changedLines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
33 | | - | |
| 32 | + | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
39 | | - | |
| 38 | + | |
| 39 | + | |
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| |||
0 commit comments