From c5f7558350d9d1a26a9266ca8cdb1318eac041a7 Mon Sep 17 00:00:00 2001 From: Benjy Weinberger Date: Tue, 20 Aug 2024 14:00:50 -0700 Subject: [PATCH] A runs-on config file (#21329) We want to use RunsOn (https://runs-on.com/) for managing self-hosted aarch64 runners on AWS. However their config must be read from main, so we must get this in separately, (and without a green CI, since we currently have no aarch64 runner). However this file clearly affects nothing at all in our code or CI config (yet), it is just an inert file until we set up RunsOn, so it should be fine to merge even without green CI. --- .github/runs-on.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/runs-on.yml diff --git a/.github/runs-on.yml b/.github/runs-on.yml new file mode 100644 index 00000000000..fe1ccd56b45 --- /dev/null +++ b/.github/runs-on.yml @@ -0,0 +1,6 @@ +images: + ubuntu22-full-arm64-python3.9: + platform: "linux" + arch: "arm64" + owner: "408085265505" + ami: "ami-0d16a07627bf409b8"