From e835dac9ad604dbb9ab6db05705a4123a844a6f6 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Wed, 19 Aug 2026 10:02:54 -0700 Subject: [PATCH] chore: use vlt-benchmarks registry --- .github/workflows/benchmark.yaml | 4 ++-- README.md | 2 +- fixtures/babylon/vlt.json | 2 +- fixtures/large/vlt.json | 2 +- fixtures/next/vlt.json | 2 +- fixtures/run/vlt.json | 2 +- fixtures/svelte/vlt.json | 2 +- fixtures/vue/vlt.json | 2 +- scripts/registry/common.sh | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index b803ab5d1a..228dca8dbc 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -134,7 +134,7 @@ jobs: - name: Install Node uses: actions/setup-node@v6 with: - node-version: '24' + node-version: "24" package-manager-cache: false - name: Install & Setup Tools run: | @@ -187,7 +187,7 @@ jobs: echo "runs=$runs" >> "$GITHUB_OUTPUT" - name: Run Benchmarks variations env: - VLT_REGISTRY: https://registry.vlt.io/vlt/npm/ + VLT_REGISTRY: https://registry.vlt.io/vlt-benchmarks/npm/ VLT_TOKEN: ${{ secrets.VLT_REGISTRY_AUTH_TOKEN }} CODEARTIFACT_AUTH_TOKEN: ${{ steps.aws.outputs.token }} CLOUDSMITH_REGISTRY: ${{ secrets.CLOUDSMITH_REGISTRY }} diff --git a/README.md b/README.md index 42a9bb261c..b4dc5610e0 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ The installation tests we run today mimic a matrix of different variations (cold Registry benchmarking is available in the `registry-clean` and `registry-lockfile` variations. - `npm` (`https://registry.npmjs.org/`) -- `vlt` (`https://registry.vlt.io/vlt/npm/`) +- `vlt` (`https://registry.vlt.io/vlt-benchmarks/npm/`) - `aws` (CodeArtifact benchmark registry) Defaults: diff --git a/fixtures/babylon/vlt.json b/fixtures/babylon/vlt.json index d6d7fad1c1..df5fd78d5c 100644 --- a/fixtures/babylon/vlt.json +++ b/fixtures/babylon/vlt.json @@ -2,7 +2,7 @@ "workspaces": ["packages/**/*"], "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/fixtures/large/vlt.json b/fixtures/large/vlt.json index eb8a368cfa..62a01e84af 100644 --- a/fixtures/large/vlt.json +++ b/fixtures/large/vlt.json @@ -1,7 +1,7 @@ { "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/fixtures/next/vlt.json b/fixtures/next/vlt.json index eb8a368cfa..62a01e84af 100644 --- a/fixtures/next/vlt.json +++ b/fixtures/next/vlt.json @@ -1,7 +1,7 @@ { "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/fixtures/run/vlt.json b/fixtures/run/vlt.json index eb8a368cfa..62a01e84af 100644 --- a/fixtures/run/vlt.json +++ b/fixtures/run/vlt.json @@ -1,7 +1,7 @@ { "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/fixtures/svelte/vlt.json b/fixtures/svelte/vlt.json index eb8a368cfa..62a01e84af 100644 --- a/fixtures/svelte/vlt.json +++ b/fixtures/svelte/vlt.json @@ -1,7 +1,7 @@ { "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/fixtures/vue/vlt.json b/fixtures/vue/vlt.json index eb8a368cfa..62a01e84af 100644 --- a/fixtures/vue/vlt.json +++ b/fixtures/vue/vlt.json @@ -1,7 +1,7 @@ { "config": { "registries": { - "npm": "https://registry.vlt.io/vlt/npm/" + "npm": "https://registry.vlt.io/vlt-benchmarks/npm/" } } } diff --git a/scripts/registry/common.sh b/scripts/registry/common.sh index a793b4c4ed..53e45709c2 100644 --- a/scripts/registry/common.sh +++ b/scripts/registry/common.sh @@ -61,7 +61,7 @@ BENCH_NPM_INSTALL="npm install --prefer-online --no-audit --no-fund --no-update- # Registry definitions BENCH_REGISTRY_NPM_URL="https://registry.npmjs.org/" -BENCH_REGISTRY_VLT_URL="https://registry.vlt.io/vlt/npm/" +BENCH_REGISTRY_VLT_URL="https://registry.vlt.io/vlt-benchmarks/npm/" BENCH_REGISTRY_VLT_URL_NPMRC_KEY="${BENCH_REGISTRY_VLT_URL#http*://}" BENCH_REGISTRY_AWS_URL="https://vlt-451504312483.d.codeartifact.us-east-1.amazonaws.com/npm/code-artifact-benchmark-test/" BENCH_REGISTRY_AWS_NPMRC_KEY="${BENCH_REGISTRY_AWS_URL#http*://}"