From 1a8559ce403babdc1d7d34e77e5aab8092a42976 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Tue, 15 Nov 2022 17:24:31 -0500 Subject: [PATCH] Create fullsrcdist.yml --- pipelines/main/misc/fullsrcdist.yml | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pipelines/main/misc/fullsrcdist.yml diff --git a/pipelines/main/misc/fullsrcdist.yml b/pipelines/main/misc/fullsrcdist.yml new file mode 100644 index 000000000..30da48ea2 --- /dev/null +++ b/pipelines/main/misc/fullsrcdist.yml @@ -0,0 +1,31 @@ +steps: + - group: "Check" + steps: + - label: "fullsrcdist" + key: "fullsrcdist" + plugins: + - JuliaCI/external-buildkite#v1: + version: "./.buildkite-external-version" + repo_url: "https://github.com/JuliaCI/julia-buildkite" + - JuliaCI/julia#v1: + # Drop default "registries" directory, so it is not persisted from execution to execution + persist_depot_dirs: packages,artifacts,compiled + version: '1.6' + - staticfloat/sandbox#v1: + rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v4.8/package_linux.x86_64.tar.gz + rootfs_treehash: "2a058481b567f0e91b9aa3ce4ad4f09e6419355a" + workspaces: + - "/cache/repos:/cache/repos" + - JuliaCI/julia#v1: + # Drop default "registries" directory, so it is not persisted from execution to execution + persist_depot_dirs: packages,artifacts,compiled + version: '1.6' + timeout_in_minutes: 10 + commands: | + make full-source-dist USE_BINARYBUILDER=0 + agents: + queue: "julia" + # Only run on `sandbox.jl`-capable machines (not `docker`-isolated ones) since we need nestable sandboxing + sandbox_capable: "true" + os: "linux" + arch: "x86_64"