From b6f9889c1521ea7c2529fd5ebd7914ff563594cd Mon Sep 17 00:00:00 2001 From: shibedrill Date: Wed, 23 Jul 2025 01:45:03 -0400 Subject: [PATCH] CI: Fix missing target download --- .gitea/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a7aa612..2a0e56f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -9,6 +9,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: rustup target add x86_64-unknown-none - run: cargo check # Disabled until custom test harness is implemented. @@ -27,6 +28,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: rustup component add rustfmt + - run: rustup target add x86_64-unknown-none - run: cargo fmt --all -- --check clippy: @@ -36,6 +38,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: rustup component add clippy + - run: rustup target add x86_64-unknown-none - run: cargo clippy -- -D warnings build: