Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
needs: [merge_queue_noop, lints]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Upload build artifacts (Linux)
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
timeout-minutes: 15
env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
needs: [merge_queue_noop, lints]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Upload build artifacts (Windows)
runs-on: spacetimedb-windows-runner
runs-on: spacetimedb-windows-runner-staging
timeout-minutes: 15
env:
RUST_BACKTRACE: full
Expand All @@ -295,7 +295,7 @@ jobs:
smoketest_build_linux:
needs: [upload-build-artifacts-linux]
name: Build smoketests (Linux)
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
timeout-minutes: 15
env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
smoketest_build_windows:
needs: [upload-build-artifacts-windows]
name: Build smoketests (Windows)
runs-on: spacetimedb-windows-runner
runs-on: spacetimedb-windows-runner-staging
timeout-minutes: 15
env:
RUST_BACKTRACE: full
Expand All @@ -386,7 +386,7 @@ jobs:
fail-fast: false
matrix:
partition: [1]
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
timeout-minutes: 30
env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -545,7 +545,7 @@ jobs:
fail-fast: false
matrix:
partition: [1, 2, 3, 4]
runs-on: spacetimedb-windows-runner
runs-on: spacetimedb-windows-runner-staging
timeout-minutes: 30
env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -579,7 +579,7 @@ jobs:
needs: [merge_queue_noop, lints, upload-build-artifacts-linux]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Test Suite
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging

env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -725,7 +725,7 @@ jobs:
needs: [merge_queue_noop]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Lints
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
env:
RUST_BACKTRACE: full
steps:
Expand Down Expand Up @@ -807,7 +807,7 @@ jobs:
needs: [merge_queue_noop, upload-build-artifacts-linux]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Build and test wasm bindings
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
env:
RUST_BACKTRACE: full
ARTIFACT_SUFFIX: linux
Expand Down Expand Up @@ -928,7 +928,7 @@ jobs:
name: Unreal Engine Tests
# This can't go on e.g. ubuntu-latest because that runner runs out of disk space. ChatGPT suggested that the general solution tends to be to use
# a custom runner.
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
# Disable the tests because they are very flaky at the moment.
# TODO: Remove this line and re-enable the `if` line just below here.
if: false
Expand Down Expand Up @@ -1025,7 +1025,7 @@ jobs:
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Check CLI docs
permissions: read-all
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
env:
RUST_BACKTRACE: full
steps:
Expand Down Expand Up @@ -1624,7 +1624,7 @@ jobs:
needs: [merge_queue_noop, upload-build-artifacts-linux]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: TypeScript - Tests
runs-on: spacetimedb-linux
runs-on: spacetimedb-linux-staging
env:
RUST_BACKTRACE: full
ARTIFACT_SUFFIX: linux
Expand Down
Loading