From dece3ebeecd338ad6de670f42ed8dcd549d71298 Mon Sep 17 00:00:00 2001 From: Christian Stolz Date: Fri, 27 Sep 2024 08:20:06 +0200 Subject: [PATCH] Update ci.yml to allow for different architectures. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1b3d9c..cddf633 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,8 +22,10 @@ jobs: steps: - name: Checkout source uses: actions/checkout@v4 + - name: Add target + run: rustup target add ${{ matrix.target }} - name: Build - run: cargo build --release + run: cargo build --release --target ${{ matrix.target }} - name: Upload artifact uses: actions/upload-artifact@v4 with: