From d948ad81aa1bf38e60df2bd372d323824b11f8b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Neuh=C3=A4user?= Date: Fri, 18 Jul 2025 15:04:02 +0200 Subject: [PATCH] Update Pipeline --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index db0e144..4fc74df 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,6 +16,8 @@ jobs: - uses: actions/checkout@v4 - name: Install rustfmt for nightly run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy + - name: Add AArch64 Target + run: rustup target add aarch64-unknown-none - name: Run format check run: cargo fmt --check - name: Run lint @@ -28,5 +30,7 @@ jobs: - uses: actions/checkout@v4 - name: Install rustfmt for nightly run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy + - name: Add AArch64 Target + run: rustup target add aarch64-unknown-none - name: Build run: cargo build --verbose