-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into barer-baremodule
- Loading branch information
Showing
771 changed files
with
32,639 additions
and
23,716 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,7 @@ | ||
# Buildkite | ||
|
||
This directory contains the Buildkite configuration files for Base Julia CI. | ||
|
||
The rootfs image definitions are located in the [rootfs-images](https://github.com/JuliaCI/rootfs-images) repository. | ||
|
||
The documentation for the Base Julia CI setup is located in the [base-buildkite-docs](https://github.com/JuliaCI/base-buildkite-docs) repository. |
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,6 @@ | ||
## Cryptic repository keys | ||
|
||
This folder contains RSA-encrypted symmetric AES keys. | ||
These are used by buildkite agents to decrypt the secrets embedded within this repository. | ||
Each buildkite agent contains an RSA secret key that is used to unlock the symmetric AES key that was used to encrypt the secrets within this repository. | ||
For more information, see the [`cryptic` buildkite plugin repository](https://github.com/staticfloat/cryptic-buildkite-plugin). |
Binary file not shown.
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,24 @@ | ||
# This file represents what is put into the webUI. | ||
# It is purely for keeping track of the changes we make to the webUI configuration; modifying this file has no effect. | ||
# We use the `cryptic` buildkite plugin to provide secrets management, which requires some integration into the WebUI's steps. | ||
agents: | ||
queue: "julia" | ||
sandbox.jl: "true" | ||
|
||
steps: | ||
- label: ":unlock: Unlock secrets, launch pipelines" | ||
plugins: | ||
- staticfloat/cryptic: | ||
# Our list of pipelines that should be launched (but don't require a signature) | ||
# These pipelines can be modified by any contributor and CI will still run. | ||
# Build secrets will not be available in these pipelines (or their children) | ||
# but some of our signed pipelines can wait upon the completion of these unsigned | ||
# pipelines. | ||
unsigned_pipelines: | ||
- .buildkite/pipelines/experimental/launch_unsigned_builders.yml | ||
|
||
# Our signed pipelines must have a `signature` or `signature_file` parameter that | ||
# verifies the treehash of the pipeline itself and the inputs listed in `inputs` | ||
# signed_pipelines: | ||
# - pipeline: .buildkite/pipelines/experimental/misc/foo_bar_baz.yml | ||
# signature: "my_signature" |
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,7 @@ | ||
## Experimental pipeline (`master` branch only) | ||
|
||
This is the [`julia-master->experimental`](https://buildkite.com/julialang/julia-master-experimental) pipeline. | ||
|
||
We use this pipeline for builders that are not yet stable enough to go into the main pipeline. | ||
|
||
These builders are triggered by GitHub webhook events, such as pushes and pull requests. |
6 changes: 6 additions & 0 deletions
6
.buildkite/pipelines/experimental/launch_unsigned_builders.yml
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,6 @@ | ||
steps: | ||
- label: ":buildkite: Launch unsigned pipelines" | ||
commands: | | ||
buildkite-agent pipeline upload .buildkite/pipelines/experimental/misc/sanitizers.yml | ||
agents: | ||
queue: julia |
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 @@ | ||
agents: | ||
queue: "julia" | ||
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing | ||
sandbox.jl: "true" | ||
os: "linux" | ||
|
||
steps: | ||
- label: "asan" | ||
key: asan | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/llvm_passes.x86_64.tar.gz | ||
rootfs_treehash: "9dd715500b117a16fcfa419ea0bca0c0ca902cee" | ||
uid: 1000 | ||
gid: 1000 | ||
workspaces: | ||
- "/cache/repos:/cache/repos" | ||
# `contrib/check-asan.jl` needs a `julia` binary: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
commands: | | ||
echo "--- Build julia-debug with ASAN" | ||
contrib/asan/build.sh ./tmp/test-asan -j$${JULIA_NUM_CORES} debug | ||
echo "--- Test that ASAN is enabled" | ||
contrib/asan/check.jl ./tmp/test-asan/asan/usr/bin/julia-debug | ||
timeout_in_minutes: 120 | ||
# notify: # TODO: uncomment this line | ||
# - github_commit_status: # TODO: uncomment this line | ||
# context: "asan" # TODO: uncomment this line |
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,24 @@ | ||
# This file represents what is put into the webUI. | ||
# It is purely for keeping track of the changes we make to the webUI configuration; modifying this file has no effect. | ||
# We use the `cryptic` buildkite plugin to provide secrets management, which requires some integration into the WebUI's steps. | ||
agents: | ||
queue: "julia" | ||
sandbox.jl: "true" | ||
|
||
steps: | ||
- label: ":unlock: Unlock secrets, launch pipelines" | ||
plugins: | ||
- staticfloat/cryptic: | ||
# Our list of pipelines that should be launched (but don't require a signature) | ||
# These pipelines can be modified by any contributor and CI will still run. | ||
# Build secrets will not be available in these pipelines (or their children) | ||
# but some of our signed pipelines can wait upon the completion of these unsigned | ||
# pipelines. | ||
unsigned_pipelines: | ||
- .buildkite/pipelines/main/launch_unsigned_builders.yml | ||
|
||
# Our signed pipelines must have a `signature` or `signature_file` parameter that | ||
# verifies the treehash of the pipeline itself and the inputs listed in `inputs` | ||
signed_pipelines: | ||
- pipeline: .buildkite/pipelines/main/misc/signed_pipeline_test.yml | ||
signature_file: .buildkite/pipelines/main/misc/signed_pipeline_test.yml.signature |
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,15 @@ | ||
## Main pipeline | ||
|
||
This is the main pipeline. It contains most of the builders. These builders are triggered by GitHub webhook events, such as pushes and pull requests. | ||
|
||
We have a different main pipeline for each permanent branch. | ||
|
||
For example: | ||
|
||
| Permanent Branch | Pipeline | | ||
| ---------------- | -------------------------------------------------------------------------------- | | ||
| `master` | [`julia-master`](https://buildkite.com/julialang/julia-master) | | ||
| `release-1.6` | [`julia-release-1.6`](https://buildkite.com/julialang/julia-release-1-dot-6) | | ||
| `release-1.7` | [`julia-release-1.7`](https://buildkite.com/julialang/julia-release-1-dot-7) | | ||
|
||
(This is not a complete list.) |
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,29 @@ | ||
# This file launches all the build jobs that _don't_ require secrets access. | ||
# These jobs can pass their output off to jobs that do require secrets access, | ||
# but those privileged steps require signing before they can be run. | ||
# | ||
# Yes, this is creating another layer of indirection; the flow now looks like: | ||
# | ||
# [webui] -> launch_unsigned_builders.yml -> misc/whitespace.yml | ||
# | ||
# when we could theoretically just have the `webui` launch `misc/whitespace.yml`, | ||
# however this raises the bar for contributors to add new (unsigned) steps to | ||
# our CI configuration, so I'd rather live with an extra layer of indirection | ||
# and only need to touch the webui configuration when we need to alter | ||
# something about the privileged steps. | ||
|
||
steps: | ||
- label: ":buildkite: Launch unsigned builders" | ||
commands: | | ||
# First, we launch the `whitespace` builder, because we want that builder to finish as quickly as possible. | ||
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/whitespace.yml | ||
# Next, we launch the miscellaneous builders in alphabetical order. | ||
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/doctest.yml | ||
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/embedding.yml | ||
buildkite-agent pipeline upload .buildkite/pipelines/main/misc/llvmpasses.yml | ||
# Finally, we launch the platform builders (`package_*`) and (`tester_*`) in alphabetical order. | ||
buildkite-agent pipeline upload .buildkite/pipelines/main/platforms/linux64.yml | ||
agents: | ||
queue: julia |
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,36 @@ | ||
agents: | ||
queue: "julia" | ||
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing | ||
sandbox.jl: "true" | ||
os: "linux" | ||
|
||
steps: | ||
- label: "doctest" | ||
key: doctest | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz | ||
rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" | ||
uid: 1000 | ||
gid: 1000 | ||
workspaces: | ||
# Include `/cache/repos` so that our `git` version introspection works. | ||
- "/cache/repos:/cache/repos" | ||
commands: | | ||
echo "--- Build Julia from source" | ||
make -j 6 | ||
echo "--- Print Julia version info" | ||
./julia -e 'using InteractiveUtils; InteractiveUtils.versioninfo()' | ||
echo "--- Build Julia docs" | ||
make docs | ||
echo "--- Run Julia doctests" | ||
JULIA_NUM_THREADS=1 make -C doc doctest=true | ||
timeout_in_minutes: 45 | ||
notify: | ||
- github_commit_status: | ||
context: "doctest" |
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,34 @@ | ||
agents: | ||
queue: "julia" | ||
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing | ||
sandbox.jl: "true" | ||
os: "linux" | ||
|
||
steps: | ||
- label: "embedding" | ||
key: "embedding" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz | ||
rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" | ||
uid: 1000 | ||
gid: 1000 | ||
workspaces: | ||
# Include `/cache/repos` so that our `git` version introspection works. | ||
- "/cache/repos:/cache/repos" | ||
commands: | | ||
prefix="/tmp/prefix" | ||
echo "+++ Build julia, deploy to $${prefix}" | ||
make -j$${JULIA_NUM_CORES} JULIA_PRECOMPILE=0 prefix=$${prefix} install | ||
embedding_output="/tmp/embedding-test" | ||
echo "+++ Run embedding tests, deploy to $${embedding_output}" | ||
mkdir -p "$${embedding_output}" | ||
make -j$${JULIA_NUM_CORES} -C test/embedding JULIA="$${prefix}/bin/julia" BIN="$${embedding_output}" | ||
timeout_in_minutes: 60 | ||
notify: | ||
- github_commit_status: | ||
context: "embedding" |
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,52 @@ | ||
agents: | ||
queue: "julia" | ||
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing | ||
sandbox.jl: "true" | ||
os: "linux" | ||
|
||
steps: | ||
- label: "analyzegc" | ||
key: "analyzegc" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/llvm_passes.x86_64.tar.gz | ||
rootfs_treehash: "9dd715500b117a16fcfa419ea0bca0c0ca902cee" | ||
workspaces: | ||
# Include `/cache/repos` so that our `git` version introspection works. | ||
- "/cache/repos:/cache/repos" | ||
commands: | | ||
echo "--- Install in-tree LLVM dependencies" | ||
make -j$${JULIA_NUM_CORES} -C deps install-llvm install-clang install-llvm-tools install-libuv install-utf8proc install-unwind | ||
echo "+++ run clangsa/analyzegc" | ||
make -j$${JULIA_NUM_CORES} -C test/clangsa | ||
make -j$${JULIA_NUM_CORES} -C src analyzegc | ||
timeout_in_minutes: 60 | ||
notify: | ||
- github_commit_status: | ||
context: "analyzegc" | ||
|
||
- label: "llvmpasses" | ||
key: "llvmpasses" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.8/package_linux.x86_64.tar.gz | ||
rootfs_treehash: "84a323ae8fcc724f8ea5aca5901bbbf4bda3e519" | ||
uid: 1000 | ||
gid: 1000 | ||
workspaces: | ||
- "/cache/repos:/cache/repos" | ||
commands: | | ||
echo "--- make release" | ||
make -j$${JULIA_NUM_CORES} release JULIA_PRECOMPILE=0 | ||
echo "--- make src/install-analysis-deps" | ||
make -j$${JULIA_NUM_CORES} -C src install-analysis-deps | ||
echo "+++ make test/llvmpasses" | ||
make -j$${JULIA_NUM_CORES} -C test/llvmpasses | ||
timeout_in_minutes: 60 | ||
notify: | ||
- github_commit_status: | ||
context: "llvmpasses" |
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,17 @@ | ||
agents: | ||
queue: "julia" | ||
os: "linux" | ||
|
||
## pipeline that showcases decryption of environment variable | ||
steps: | ||
- label: ":lock: :rocket: Signed pipeline test" | ||
plugins: | ||
- staticfloat/cryptic#v1: | ||
variables: | ||
- SECRET_KEY="U2FsdGVkX18tb7st0SuQAvh4Yv4xENxOAu8q9XkmOeDVKBNY4FngEwK3xmiKUqaS" | ||
commands: | | ||
echo "SECRET_KEY: $${SECRET_KEY}" | ||
# We must accept the signed job id secret in order to propagate secrets | ||
env: | ||
BUILDKITE_PLUGIN_CRYPTIC_BASE64_SIGNED_JOB_ID_SECRET: ${BUILDKITE_PLUGIN_CRYPTIC_BASE64_SIGNED_JOB_ID_SECRET?} |
1 change: 1 addition & 0 deletions
1
.buildkite/pipelines/main/misc/signed_pipeline_test.yml.signature
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 @@ | ||
Salted__��NE""�;��יܜ��3%���0-R�`�>t��QΪZ6-�N�����He��_5��[�d��zn�@�@B9���H�ۮ���' |
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,23 @@ | ||
agents: | ||
queue: "julia" | ||
# Only run on `sandbox.jl` machines (not `docker`-isolated ones) since we need nestable sandboxing | ||
sandbox.jl: "true" | ||
os: "linux" | ||
|
||
steps: | ||
- label: "whitespace" | ||
key: "whitespace" | ||
plugins: | ||
- JuliaCI/julia#v1: | ||
version: 1.6 | ||
- staticfloat/sandbox#v1: | ||
rootfs_url: https://github.com/JuliaCI/rootfs-images/releases/download/v3.1/package_linux.x86_64.tar.gz | ||
rootfs_treehash: "8c33c341a864852629b8aac01a6eb6a79b73570e" | ||
workspaces: | ||
- "/cache/repos:/cache/repos" | ||
commands: | | ||
make -j$${JULIA_NUM_CORES} check-whitespace | ||
timeout_in_minutes: 10 | ||
notify: | ||
- github_commit_status: | ||
context: "whitespace" |
Oops, something went wrong.