fix(ci): use public rust:1.82-bookworm image instead of custom image
Some checks failed
Test / frontend-typecheck (pull_request) Failing after 15s
Test / frontend-tests (pull_request) Failing after 19s
Test / rust-tests (pull_request) Failing after 1m42s
Test / rust-clippy (pull_request) Failing after 1m49s
Test / rust-fmt-check (pull_request) Failing after 1m57s
PR Review Automation / review (pull_request) Failing after 4m52s

Replace custom CI image with public rust image to fix workflow failures.
Add Node.js installation step for rust-fmt-check job.

The custom image (gitea.tftsr.com:3000/sarman/trcaa-linux-amd64:rust1.88-node22)
needs to be built via build-images workflow first.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Shaun Arman 2026-06-05 14:37:15 -05:00
parent 093495a653
commit af822d5d57

View File

@ -10,7 +10,7 @@ jobs:
rust-fmt-check:
runs-on: ubuntu-latest
container:
image: gitea.tftsr.com:3000/sarman/trcaa-linux-amd64:rust1.88-node22
image: rust:1.82-bookworm
steps:
- name: Checkout
run: |
@ -40,6 +40,11 @@ jobs:
key: ${{ runner.os }}-cargo-linux-amd64-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-linux-amd64-
- name: Install Node.js
run: |
apt-get update && apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y nodejs
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Update version from Git
@ -50,7 +55,7 @@ jobs:
rust-clippy:
runs-on: ubuntu-latest
container:
image: gitea.tftsr.com:3000/sarman/trcaa-linux-amd64:rust1.88-node22
image: rust:1.82-bookworm
steps:
- name: Checkout
run: |
@ -85,7 +90,7 @@ jobs:
rust-tests:
runs-on: ubuntu-latest
container:
image: gitea.tftsr.com:3000/sarman/trcaa-linux-amd64:rust1.88-node22
image: rust:1.82-bookworm
steps:
- name: Checkout
run: |