Skip to content

Commit 462cac9

Browse files
authored
CI - Migrate off of spacetimedb-runner (#3763)
# Description of Changes Move anything running on `spacetimedb-runner` to `spacetimedb-new-runner` # API and ABI breaking changes None. # Expected complexity level and risk 1 # Testing - [x] CI passes --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent 507b087 commit 462cac9

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,21 @@ jobs:
317317
fi
318318
319319
update:
320-
name: Test spacetimedb-update flow
320+
name: Test spacetimedb-update flow (${{ matrix.target }})
321321
permissions: read-all
322322
strategy:
323323
matrix:
324324
include:
325-
- { target: x86_64-unknown-linux-gnu, runner: spacetimedb-runner }
325+
- runner: spacetimedb-new-runner
326+
target: x86_64-unknown-linux-gnu
327+
container:
328+
image: localhost:5000/spacetimedb-ci:latest
329+
options: --privileged
326330
- { target: aarch64-unknown-linux-gnu, runner: arm-runner }
327331
- { target: aarch64-apple-darwin, runner: macos-latest }
328332
- { target: x86_64-pc-windows-msvc, runner: windows-latest }
329333
runs-on: ${{ matrix.runner }}
334+
container: ${{ matrix.container }}
330335
steps:
331336
- name: Checkout
332337
uses: actions/checkout@v3

.github/workflows/upgrade-version-check.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ permissions: read-all
88

99
jobs:
1010
version_upgrade_check:
11-
runs-on: spacetimedb-runner
11+
runs-on: spacetimedb-new-runner
12+
container:
13+
image: localhost:5000/spacetimedb-ci:latest
14+
options: --privileged
1215
steps:
1316
- name: Checkout
1417
uses: actions/checkout@v3

0 commit comments

Comments
 (0)