-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
709d226
commit f8b4ffc
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |