From 3a4b6910ec576107b7da06d3a35bdfa3b69a6d93 Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Tue, 21 Oct 2025 19:55:26 +0200 Subject: [PATCH 1/3] use stream ci --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 66f13a47..7daf543e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -13,7 +13,7 @@ concurrency: jobs: lint: name: Ruff & mypy - runs-on: ubuntu-latest + runs-on: build steps: - name: Checkout uses: actions/checkout@v5 @@ -27,7 +27,7 @@ jobs: test: name: Test "${{ inputs.marker }}" - runs-on: ubuntu-latest + runs-on: build env: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} CARTESIA_API_KEY: ${{ secrets.CARTESIA_API_KEY }} From 124b76989eeaa7eb370c1149f4a42f7f12c484e7 Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Tue, 21 Oct 2025 20:05:01 +0200 Subject: [PATCH 2/3] use build1 --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 7daf543e..b02ee0b1 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -13,7 +13,7 @@ concurrency: jobs: lint: name: Ruff & mypy - runs-on: build + runs-on: build1 steps: - name: Checkout uses: actions/checkout@v5 @@ -27,7 +27,7 @@ jobs: test: name: Test "${{ inputs.marker }}" - runs-on: build + runs-on: build1 env: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} CARTESIA_API_KEY: ${{ secrets.CARTESIA_API_KEY }} From d24336a898fbf9759a3ce228aae9434656d3ccf4 Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Tue, 21 Oct 2025 20:44:11 +0200 Subject: [PATCH 3/3] we do not support hardlinks for uv --- .github/workflows/run_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index b02ee0b1..a4c039d8 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -10,6 +10,10 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true + +env: + UV_LINK_MODE: copy + jobs: lint: name: Ruff & mypy