From 903344684698a435383977afd43e3d6f82b52608 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Mon, 15 Jan 2024 03:34:44 -0500 Subject: [PATCH] Delete .drone.jsonnet (#460) --- .drone.jsonnet | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .drone.jsonnet diff --git a/.drone.jsonnet b/.drone.jsonnet deleted file mode 100644 index 7725e407..00000000 --- a/.drone.jsonnet +++ /dev/null @@ -1,30 +0,0 @@ -local Pipeline(os, arch, version, alpine=false) = { - kind: "pipeline", - name: os+" - "+arch+" - Julia "+version+(if alpine then " (Alpine)" else ""), - platform: { - os: os, - arch: arch - }, - steps: [ - { - name: "Run tests", - image: "julia:"+version+(if alpine then "-alpine" else ""), - commands: [ - "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true)'", - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build()'", - "julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.test(coverage=true)'" - ] - } - ], - trigger: { - branch: ["master"] - } -}; - -[ - Pipeline("linux", "arm", "1.3.1"), - # Pipeline("linux", "arm", "1.6.1"), - Pipeline("linux", "arm64", "1.3"), - Pipeline("linux", "arm64", "1.6"), - Pipeline("linux", "amd64", "1.6", true) -]