From fdb90ae630603fdda6bf9ef8c466cbeee66c6080 Mon Sep 17 00:00:00 2001 From: Philipp Spiess Date: Tue, 8 Oct 2024 13:48:32 +0200 Subject: [PATCH] Try out namespace GitHub Actions workers (#14587) We're trialing [namespace.so](https://namespace.so/) for their custom GitHub Action workers. So far we're seeing an improvement of 3 minutes in our pipeline (used to take 6min 30sec and now it's 3min 30sec, an almost 50% improvement!). We can always revert this PR, but I recommend we try it out by enabling it for our CI for the next few days. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f3abe020d91e..d28a1e1e0660 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: node-version: [20] - runner: [ubuntu-latest, windows-latest, macos-14] + runner: [namespace-profile-default, windows-latest, macos-14] # Exclude windows and macos from being built on feature branches on-next-branch: - ${{ github.ref == 'refs/heads/next' }}