|
| 1 | +agents: |
| 2 | + queue: "julia" |
| 3 | + # Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing |
| 4 | + sandbox.jl: "true" |
| 5 | + os: "linux" |
| 6 | +steps: |
| 7 | + - label: "analyze" |
| 8 | + key: "analyze" |
| 9 | + depends_on: |
| 10 | + - "analyzegc" |
| 11 | + - "asan" |
| 12 | + plugins: |
| 13 | + - JuliaCI/julia#v1: |
| 14 | + version: 1.6 |
| 15 | + - staticfloat/sandbox#v1: |
| 16 | + rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz |
| 17 | + rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" |
| 18 | + uid: 1000 |
| 19 | + gid: 1000 |
| 20 | + workspaces: |
| 21 | + # Include `/cache/repos` so that our `git` version introspection works. |
| 22 | + - "/cache/repos:/cache/repos" |
| 23 | + timeout_in_minutes: 10 |
| 24 | + notify: |
| 25 | + - github_commit_status: |
| 26 | + context: "analyze" |
| 27 | + commands: | |
| 28 | + echo "All `analyze` jobs completed successfully." |
| 29 | + - label: "docs" |
| 30 | + key: "docs" |
| 31 | + depends_on: |
| 32 | + - "doctest" |
| 33 | + # - "docdeploy" |
| 34 | + plugins: |
| 35 | + - JuliaCI/julia#v1: |
| 36 | + version: 1.6 |
| 37 | + - staticfloat/sandbox#v1: |
| 38 | + rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz |
| 39 | + rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" |
| 40 | + uid: 1000 |
| 41 | + gid: 1000 |
| 42 | + workspaces: |
| 43 | + # Include `/cache/repos` so that our `git` version introspection works. |
| 44 | + - "/cache/repos:/cache/repos" |
| 45 | + timeout_in_minutes: 10 |
| 46 | + notify: |
| 47 | + - github_commit_status: |
| 48 | + context: "docs" |
| 49 | + commands: | |
| 50 | + echo "All `docs` jobs completed successfully." |
| 51 | + - label: "package" |
| 52 | + key: "package" |
| 53 | + depends_on: |
| 54 | + - "package_linux32" |
| 55 | + - "package_linux64" |
| 56 | + plugins: |
| 57 | + - JuliaCI/julia#v1: |
| 58 | + version: 1.6 |
| 59 | + - staticfloat/sandbox#v1: |
| 60 | + rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz |
| 61 | + rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" |
| 62 | + uid: 1000 |
| 63 | + gid: 1000 |
| 64 | + workspaces: |
| 65 | + # Include `/cache/repos` so that our `git` version introspection works. |
| 66 | + - "/cache/repos:/cache/repos" |
| 67 | + timeout_in_minutes: 10 |
| 68 | + notify: |
| 69 | + - github_commit_status: |
| 70 | + context: "package" |
| 71 | + commands: | |
| 72 | + echo "All `package` jobs completed successfully." |
| 73 | + - label: "test" |
| 74 | + key: "test" |
| 75 | + depends_on: |
| 76 | + - "embedding" |
| 77 | + - "llvmpasses" |
| 78 | + - "tester_linux32" |
| 79 | + - "tester_linux64_st" |
| 80 | + - "tester_linux64_mt" |
| 81 | + - "tester_linux64_st_rr" |
| 82 | + - "tester_linux64_mt_rr" |
| 83 | + plugins: |
| 84 | + - JuliaCI/julia#v1: |
| 85 | + version: 1.6 |
| 86 | + - staticfloat/sandbox#v1: |
| 87 | + rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz |
| 88 | + rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" |
| 89 | + uid: 1000 |
| 90 | + gid: 1000 |
| 91 | + workspaces: |
| 92 | + # Include `/cache/repos` so that our `git` version introspection works. |
| 93 | + - "/cache/repos:/cache/repos" |
| 94 | + timeout_in_minutes: 10 |
| 95 | + notify: |
| 96 | + - github_commit_status: |
| 97 | + context: "test" |
| 98 | + commands: | |
| 99 | + echo "All `test` jobs completed successfully." |
0 commit comments