Disable darwin builds (#1571)
telegraf can't be cross-compiled for darwin, it has C dependencies and thus many of the system plugins won't work.
This commit is contained in:
parent
497353e586
commit
13865f9e04
|
@ -83,29 +83,17 @@ targets = {
|
||||||
}
|
}
|
||||||
|
|
||||||
supported_builds = {
|
supported_builds = {
|
||||||
"darwin": [ "amd64" ],
|
|
||||||
"windows": [ "amd64" ],
|
"windows": [ "amd64" ],
|
||||||
"linux": [ "amd64", "i386", "armhf", "armel", "arm64", "static_amd64" ],
|
"linux": [ "amd64", "i386", "armhf", "armel", "arm64", "static_amd64" ],
|
||||||
"freebsd": [ "amd64" ]
|
"freebsd": [ "amd64" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
supported_packages = {
|
supported_packages = {
|
||||||
"darwin": [ "tar" ],
|
|
||||||
"linux": [ "deb", "rpm", "tar" ],
|
"linux": [ "deb", "rpm", "tar" ],
|
||||||
"windows": [ "zip" ],
|
"windows": [ "zip" ],
|
||||||
"freebsd": [ "tar" ]
|
"freebsd": [ "tar" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
supported_tags = {
|
|
||||||
# "linux": {
|
|
||||||
# "amd64": ["sensors"]
|
|
||||||
# }
|
|
||||||
}
|
|
||||||
|
|
||||||
prereq_cmds = {
|
|
||||||
# "linux": "sudo apt-get install lm-sensors libsensors4-dev"
|
|
||||||
}
|
|
||||||
|
|
||||||
################
|
################
|
||||||
#### Telegraf Functions
|
#### Telegraf Functions
|
||||||
################
|
################
|
||||||
|
|
Loading…
Reference in New Issue