From 6e819ad2a0ddd363486ba854d9985cc9d2c31497 Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Thu, 5 Dec 2024 10:10:34 -0800 Subject: [PATCH] fix: Switch from Warp to standard runners --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f2eed3ae6..3cbcbc03ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ concurrency: jobs: build-image: - timeout-minutes: 10 - runs-on: 'warp-ubuntu-latest-arm64-16x' + timeout-minutes: 25 + runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v4 @@ -53,17 +53,17 @@ jobs: on_retry_command: docker logs hub test: - timeout-minutes: 10 + timeout-minutes: 25 strategy: matrix: include: - node_version: 20 - runs_on: 'warp-ubuntu-latest-x64-16x' + runs_on: 'ubuntu-latest' + #- node_version: 22.4.1 # HACK: There's an issue with node 22.7.0 + # runs_on: 'depot-ubuntu-latest-arm-4' - node_version: 22.4.1 # HACK: There's an issue with node 22.7.0 - runs_on: 'warp-ubuntu-latest-arm64-16x' # Only works on ARM for now - - node_version: 22.4.1 # HACK: There's an issue with node 22.7.0 - runs_on: 'warp-ubuntu-latest-x64-16x' + runs_on: 'ubuntu-latest' runs-on: ${{ matrix.runs_on }} name: test (${{ matrix.node_version }})