Find a file
Alexander Thomas 3914a030ac Replace deprecated uses of tree_status_host
Change-Id: Ief1cb7e3592269b9cbf2556e75e2598ebdd9d6ab
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/386781
Reviewed-by: Martin Kustermann <kustermann@google.com>
Auto-Submit: Alexander Thomas <athom@google.com>
Commit-Queue: Martin Kustermann <kustermann@google.com>
2024-09-26 09:33:52 +00:00
generated Replace deprecated uses of tree_status_host 2024-09-26 09:33:52 +00:00
lib Add checkout_flute to dart2wasm builders 2024-09-23 08:51:51 +00:00
.style.yapf [infra] Add recipe bundler 2020-02-22 00:01:09 +00:00
analyzer.star Partially revert "[infra] Improve analyzer commit queue coverage." 2024-09-24 16:46:44 +00:00
cfe.star [infra] Remove Flutter HHH builders and console 2023-06-23 07:55:31 +00:00
codereview.settings Update OWNERS: Remove Xooglers's @google.com emails as those won't be received 2024-06-20 09:58:36 +00:00
console-header.textpb Replace deprecated uses of tree_status_host 2024-09-26 09:33:52 +00:00
cq.star Replace deprecated uses of tree_status_host 2024-09-26 09:33:52 +00:00
dart2js.star [infra] Convert dart2js builders to null safety 2023-03-08 08:32:03 +00:00
dart2wasm.star Add checkout_flute to dart2wasm builders 2024-09-23 08:51:51 +00:00
ddc.star [infra] Turn down DDC unsound builder 2024-05-08 15:10:41 +00:00
main.star Replace deprecated uses of tree_status_host 2024-09-26 09:33:52 +00:00
monorepo.star [infra] Add chrome-dart2wasm-skwasm-ui to monorepo testing 2024-09-13 10:42:24 +00:00
OWNERS Update OWNERS: Remove Xooglers's @google.com emails as those won't be received 2024-06-20 09:58:36 +00:00
pkg.star [infra] Disable RBE on Windows/Linux ARM64 builders 2024-07-23 11:37:27 +00:00
PRESUBMIT.py [infra] Switch infra/config presubmit to python3 2022-08-09 16:40:55 +00:00
project.star [infra] Add bucket contraints to all buckets 2023-06-09 13:24:22 +00:00
README.md [infra] Trigger special VM builders only on VM changes 2019-05-10 07:50:19 +00:00
sdk.star [infra] Disable RBE on arm64 SDK try builder, take 2. 2024-08-01 07:39:52 +00:00
vm.star [infra] Downgrade RISCV64 QEMU builder to Jammy. 2024-09-16 19:06:42 +00:00

infra/config branch

This branch contains dart project-wide configurations for infra services. For example, cr-buildbucket.cfg defines builders that run on the dart waterfall and commit queue.

Making changes

It is recommended to have a separate checkout for this branch, so switching to/from this branch does not populate/delete all files in the master branch.

Most files in this branch are generated from main.star. Run ./main.star to regenerate them after changes have been made. Files that are auto-generated must not be modified manually, and they have a file header that states that they are.

Initial setup:

mkdir config
cd config
git init
git remote add origin https://dart.googlesource.com/sdk
git fetch origin infra/config
git reset --hard origin/infra/config
git config depot-tools.upstream origin/infra/config

Now you can create a new branch to make changes:

git new-branch add-new-builder
# edit main.star
./main.star # generate Luci config files
git commit -a

git cl upload