Skip to content
Draft
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
strategy:
matrix:
include:
- { runner: spacetimedb-runner, smoketest_args: --docker }
- { runner: ubuntu-latest, smoketest_args: --docker }
- { runner: windows-latest, smoketest_args: --no-build-cli }
runner: [ spacetimedb-runner, windows-latest ]
runner: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.runner }}
steps:
- name: Find Git ref
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

test:
name: Test Suite
runs-on: spacetimedb-runner
runs-on: ubuntu-latest
steps:
- name: Find Git ref
env:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

lints:
name: Lints
runs-on: spacetimedb-runner
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

wasm_bindings:
name: Build and test wasm bindings
runs-on: spacetimedb-runner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
strategy:
matrix:
include:
- { target: x86_64-unknown-linux-gnu, runner: spacetimedb-runner }
- { target: x86_64-unknown-linux-gnu, runner: ubuntu-latest }
- { target: aarch64-unknown-linux-gnu, runner: arm-runner }
- { target: aarch64-apple-darwin, runner: macos-latest }
- { target: x86_64-pc-windows-msvc, runner: windows-latest }
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/csharp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
unity-testsuite:
# This can't go on ubuntu-latest (at least as-is) because it relies on pre-installed Unity.
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this true?

runs-on: spacetimedb-runner
# Cancel any previous testsuites running on the same PR and/or ref.
concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions: read-all

jobs:
version_upgrade_check:
runs-on: spacetimedb-runner
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
Loading