Skip to content

Commit 0e48b9e

Browse files
committed
update binaries (fio v3.38; iperf v3.18)
1 parent 4a275bb commit 0e48b9e

10 files changed

+19
-14
lines changed

bin/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ This directory contains all of the binaries required to run the benchmarking tes
66

77
| Binary Name | Version | Compile Date | Architecture | OS | SHA-256 Hash<br>(VirusTotal Scan) |
88
|:-:|:-:|:-:|:-:|:-:|:-:|
9-
| fio_x64 | 3.37 | 22-APR-2024 | x86_64 | 64-bit | [54e5552](https://www.virustotal.com/gui/file/54e5552f714e4583c8f81419e3a3b432f3730780531ac39dca43df5174df6e06) |
10-
| fio_x86 | 3.37 | 22-APR-2024 | i686 | 32-bit | [dce3615](https://www.virustotal.com/gui/file/dce3615fe7ff360447b9148f533422b4ca64e67579735e412c844bc718cf7f8c) |
11-
| fio_aarch64 | 3.37 | 22-APR-2024 | ARM (aarch64) | 64-bit | [3c1bf69](https://www.virustotal.com/gui/file/3c1bf6944d61cf0f900980b2eefca6e90919b6c8a79cedbd175fe9a2c3d9c285) |
12-
| fio_arm | 3.37 | 22-APR-2024 | ARM | 32-bit | [9917be5](https://www.virustotal.com/gui/file/9917be59238204bcaf1ccd5e08ab8e2a6bec6e5162ba8a4cf62ab8bb506ac9c1) |
13-
| iperf_x64 | 3.17.1 | 02-JUN-2024 | x86_64 | 64-bit | [bd5f0b8](https://www.virustotal.com/gui/file/bd5f0b8f6961cb7d0cc3b306ecb3d1eb9e2ca6352ec0166d8bd31dfb050a78dd) |
14-
| iperf_x86 | 3.17.1 | 02-JUN-2024 | i686 | 32-bit | [2708340](https://www.virustotal.com/gui/file/270834037817dcc5b54d1ed040464293dab350ef52bc5ae84788c57dbba5395c) |
15-
| iperf_aarch64 | 3.17.1 | 02-JUN-2024 | ARM (aarch64) | 64-bit | [5b391dc](https://www.virustotal.com/gui/file/5b391dc8361d346a80b4589ebef21f0fc4751eac0328a6a71a5fbe2b5cc9e01a) |
16-
| iperf_arm | 3.15* | 20-OCT-2023 | ARM | 32-bit | [310e80f](https://www.virustotal.com/gui/file/310e80f442dda47fa0fe41225af85e8b91e75116dce5187f123380fd3c3c85a8) |
9+
| fio_x64 | 3.38 | 14-DEC-2024 | x86_64 | 64-bit | [b802ea1](https://www.virustotal.com/gui/file/b802ea1460f8a0ab6a9d8a48d5d23dec8f68228293b88c2e4567424e6d2a7a47) |
10+
| fio_x86 | 3.38 | 14-DEC-2024 | i686 | 32-bit | [8f06655](https://www.virustotal.com/gui/file/8f066550c35a8c6bbb53c80264ec0c1962128267562a785391fd3bb36ca489cb) |
11+
| fio_aarch64 | 3.38 | 23-NOV-2024 | ARM (aarch64) | 64-bit | [ed703a8](https://www.virustotal.com/gui/file/ed703a87951992696a0870dfb3094956ebe0f5ea304918dc05a921d32aacb760) |
12+
| fio_arm | 3.38 | 23-NOV-2024 | ARM | 32-bit | [b52a809](https://www.virustotal.com/gui/file/b52a809f748587909c429edc14e54299249aedb19b5db72a60affc0de4b5c608) |
13+
| iperf3_x64 | 3.18 | 14-DEC-2024 | x86_64 | 64-bit | [ef787ab](https://www.virustotal.com/gui/file/ef787abbe4b09c7958ed592df52dfe3a2848cbdee5b76738c757d7c51c348053) |
14+
| iperf3_x86 | 3.18 | 14-DEC-2024 | i686 | 32-bit | [655eb51](https://www.virustotal.com/gui/file/655eb51abc36ddaa624c1d0e98c6930e8b1e9d91c85e5a3443624355656be9b9) |
15+
| iperf3_aarch64 | 3.18 | 14-DEC-2024 | ARM (aarch64) | 64-bit | [92e5821](https://www.virustotal.com/gui/file/92e5821cfbaa1f8faf123b4d6773dc0f6efef221b9308668a21ddabc04a1de20) |
16+
| iperf3_arm | 3.15* | 20-OCT-2023 | ARM | 32-bit | [310e80f](https://www.virustotal.com/gui/file/310e80f442dda47fa0fe41225af85e8b91e75116dce5187f123380fd3c3c85a8) |
1717

1818
Note: ARM compatibility is considered experimental. Static binaries for 32-bit and ARM-based machines are cross-compiled within a Holy Build Box container using the [musl toolchain](https://musl.cc/).
1919

bin/compile.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ source /hbb/activate
66

77
set -x
88

9-
# temp workaround to fix issue with phusion's repo
10-
rm -f /etc/yum.repos.d/phusion_centos-6-scl-i386.repo
9+
# remove obsolete CentOS repos
10+
cd /etc/yum.repos.d/
11+
rm CentOS-Base.repo CentOS-SCLo-scl-rh.repo CentOS-SCLo-scl.repo CentOS-fasttrack.repo CentOS-x86_64-kernel.repo
1112

1213
yum install -y yum-plugin-ovl # fix for docker overlay fs
1314
yum install -y xz
@@ -35,7 +36,7 @@ source /hbb_exe/activate
3536

3637
# download and compile fio
3738
cd ~
38-
curl -L https://github.com/axboe/fio/archive/fio-3.37.tar.gz -o "fio.tar.gz"
39+
curl -L https://github.com/axboe/fio/archive/fio-3.38.tar.gz -o "fio.tar.gz"
3940
tar xf fio.tar.gz
4041
cd fio-fio*
4142
./configure --disable-native
@@ -48,7 +49,7 @@ cp fio "/io/fio_$ARCH"
4849

4950
# download and compile iperf
5051
cd ~
51-
curl -L https://github.com/esnet/iperf/archive/3.17.1.tar.gz -o "iperf.tar.gz"
52+
curl -L https://github.com/esnet/iperf/archive/3.18.tar.gz -o "iperf.tar.gz"
5253
tar xf iperf.tar.gz
5354
cd iperf*
5455
./configure --disable-shared --disable-profiling

bin/cross-compile.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ source /hbb/activate
66

77
set -x
88

9+
# remove obsolete CentOS repos
10+
cd /etc/yum.repos.d/
11+
rm CentOS-Base.repo CentOS-SCLo-scl-rh.repo CentOS-SCLo-scl.repo CentOS-fasttrack.repo CentOS-x86_64-kernel.repo
12+
913
yum install -y yum-plugin-ovl # fix for docker overlay fs
1014
yum install -y xz
1115

@@ -26,7 +30,7 @@ source /hbb_exe/activate
2630

2731
# download and compile fio
2832
cd ~
29-
curl -L https://github.com/axboe/fio/archive/fio-3.37.tar.gz -o "fio.tar.gz"
33+
curl -L https://github.com/axboe/fio/archive/fio-3.38.tar.gz -o "fio.tar.gz"
3034
tar xf fio.tar.gz
3135
cd fio-fio*
3236
CC=/root/${CROSS}-cross/bin/${CROSS}-gcc ./configure --disable-native --build-static
@@ -39,7 +43,7 @@ cp fio "/io/fio_$ARCH"
3943

4044
# download and compile iperf
4145
cd ~
42-
curl -L https://github.com/esnet/iperf/archive/3.17.1.tar.gz -o "iperf.tar.gz"
46+
curl -L https://github.com/esnet/iperf/archive/3.18.tar.gz -o "iperf.tar.gz"
4347
tar xf iperf.tar.gz
4448
cd iperf*
4549
CC=/root/${CROSS}-cross/bin/${CROSS}-gcc ./configure --disable-shared --disable-profiling --build x86_64-pc-linux-gnu --host "${HOST}" --with-openssl=no --enable-static-bin

bin/fio/fio_aarch64

49 KB
Binary file not shown.

bin/fio/fio_arm

47.9 KB
Binary file not shown.

bin/fio/fio_x64

54.2 KB
Binary file not shown.

bin/fio/fio_x86

45 KB
Binary file not shown.

bin/iperf/iperf3_aarch64

10.8 KB
Binary file not shown.

bin/iperf/iperf3_x64

14.9 KB
Binary file not shown.

bin/iperf/iperf3_x86

9.61 KB
Binary file not shown.

0 commit comments

Comments
 (0)