Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Switch from Warp to standard runners
Browse files Browse the repository at this point in the history
sds committed Dec 5, 2024
1 parent 45e7ae1 commit 6e819ad
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }})

0 comments on commit 6e819ad

Please sign in to comment.