-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathworkshop.json
48 lines (48 loc) · 1.1 KB
/
workshop.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"workshop": {
"schema": {
"version": "2020.03.02"
}
},
"userenvs": [
{
"name": "default",
"requirements": [
"iperf_src",
"debug"
]
}
],
"requirements": [
{
"name": "debug",
"type": "distro",
"distro_info": {
"packages": [
"ethtool",
"net-tools",
"tcpdump"
]
}
},
{
"name": "iperf_src",
"type": "source",
"source_info": {
"url": "https://github.com/esnet/iperf/archive/3.11.tar.gz",
"filename": "3.11.tar.gz",
"commands": {
"unpack": "tar -xzf 3.11.tar.gz",
"get_dir": "tar -tzf 3.11.tar.gz | head -n 1",
"commands": [
"CFLAGS=\"-ggdb\" ./configure",
"make",
"make install",
"ldconfig",
"/usr/local/bin/iperf3 -v"
]
}
}
}
]
}