浏览代码

less drone (#2060)

Sean OMeara 2 年之前
父节点
当前提交
b67cd2cf7a
共有 2 个文件被更改,包括 79 次插入8347 次删除
  1. 7 2
      .drone.jsonnet
  2. 72 8345
      .drone.yml

+ 7 - 2
.drone.jsonnet

@@ -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
@@ -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
  ])
  

文件差异内容过多而无法显示
+ 72 - 8345
.drone.yml


部分文件因为文件数量过多而无法显示