From ab280222fa71bae26509282c6c9f01ac31fe033f Mon Sep 17 00:00:00 2001 From: John Detter <4099508+jdetter@users.noreply.github.com> Date: Tue, 16 Jun 2026 14:18:12 -0500 Subject: [PATCH] Remove spacetimedb-update test on aarch64 (#5348) # Description of Changes This removes the `spacetimedb-update` check specifically on arm. This test doesn't have a whole lot of value because we're already covering Linux + Windows on x86 and then macOS on aarch64. Removing this will allow us to decom the arm runner. # API and ABI breaking changes None - just a CI change # Expected complexity level and risk 1 # Testing - I have not tested this but me and Zeke sync'd on this and we think it makes sense. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33181c6888..a874e78f22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -462,7 +462,6 @@ jobs: matrix: include: - { target: x86_64-unknown-linux-gnu, runner: spacetimedb-new-runner-2 } - - { target: aarch64-unknown-linux-gnu, runner: arm-runner } - { target: aarch64-apple-darwin, runner: macos-latest } - { target: x86_64-pc-windows-msvc, runner: windows-latest } runs-on: ${{ matrix.runner }} @@ -480,11 +479,6 @@ jobs: - name: Install rust target run: rustup target add ${{ matrix.target }} - - name: Install packages - if: ${{ matrix.runner == 'arm-runner' }} - shell: bash - run: sudo apt install -y libssl-dev - - name: Test spacetimedb-update env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}