Skip to content

Commit

Permalink
Merge branch 'dev' into gh-2056
Browse files Browse the repository at this point in the history
  • Loading branch information
glimberg authored Jul 18, 2023
2 parents 56548b5 + b67cd2c commit d8c215b
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 8,349 deletions.
9 changes: 7 additions & 2 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ local less_targets = [
{ "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 = [
//
// copypasta from here
Expand Down Expand Up @@ -239,13 +244,13 @@ std.flattenArrays([
[
Index(p)
]
for p in targets
for p in native_targets
]) +
std.flattenArrays([
[
Test(p.os, p.distro, p.name, isa, p.events)
for isa in p.isas
]
for p in targets
for p in native_targets
])

Loading

0 comments on commit d8c215b

Please sign in to comment.