mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 20:43:44 +02:00
Merge branch 'dev' into gh-2056
This commit is contained in:
commit
d8c215b252
3 changed files with 11 additions and 8277 deletions
|
@ -38,6 +38,11 @@ local less_targets = [
|
||||||
{ "os": "linux", distro: "ubuntu", "name": "focal", "isas": [ "armv7", "amd64", "arm64" ], "events": [ "push", "tag", "custom" ] },
|
{ "os": "linux", distro: "ubuntu", "name": "focal", "isas": [ "armv7", "amd64", "arm64" ], "events": [ "push", "tag", "custom" ] },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
local native_targets = [
|
||||||
|
{ "os": "linux", distro: "debian", "name": "bullseye", "isas": [ "386", "armv7", "amd64", "arm64" ], "events": [ "push", "tag", "custom" ] },
|
||||||
|
];
|
||||||
|
|
||||||
local master_targets = [
|
local master_targets = [
|
||||||
//
|
//
|
||||||
// copypasta from here
|
// copypasta from here
|
||||||
|
@ -239,13 +244,13 @@ std.flattenArrays([
|
||||||
[
|
[
|
||||||
Index(p)
|
Index(p)
|
||||||
]
|
]
|
||||||
for p in targets
|
for p in native_targets
|
||||||
]) +
|
]) +
|
||||||
std.flattenArrays([
|
std.flattenArrays([
|
||||||
[
|
[
|
||||||
Test(p.os, p.distro, p.name, isa, p.events)
|
Test(p.os, p.distro, p.name, isa, p.events)
|
||||||
for isa in p.isas
|
for isa in p.isas
|
||||||
]
|
]
|
||||||
for p in targets
|
for p in native_targets
|
||||||
])
|
])
|
||||||
|
|
8277
.drone.yml
8277
.drone.yml
File diff suppressed because it is too large
Load diff
|
@ -320,7 +320,7 @@ class Binder {
|
||||||
//
|
//
|
||||||
(void)gotViaProc;
|
(void)gotViaProc;
|
||||||
|
|
||||||
#if ! (defined(ZT_SDK) || defined(__ANDROID__)) // getifaddrs() freeifaddrs() not available on Android
|
#if ! defined(__ANDROID__) // getifaddrs() freeifaddrs() not available on Android
|
||||||
if (! gotViaProc) {
|
if (! gotViaProc) {
|
||||||
struct ifaddrs* ifatbl = (struct ifaddrs*)0;
|
struct ifaddrs* ifatbl = (struct ifaddrs*)0;
|
||||||
struct ifaddrs* ifa;
|
struct ifaddrs* ifa;
|
||||||
|
|
Loading…
Add table
Reference in a new issue