From a3b84dcc57bfb45c08ffdaff09ec5a7c109758fa Mon Sep 17 00:00:00 2001 From: Ethan O'Brien Date: Sun, 21 Jul 2024 15:49:16 -0500 Subject: [PATCH] a --- .forgejo/workflows/rust.yml | 43 +------------------------------------ 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/.forgejo/workflows/rust.yml b/.forgejo/workflows/rust.yml index a829ea6..134f971 100644 --- a/.forgejo/workflows/rust.yml +++ b/.forgejo/workflows/rust.yml @@ -1,4 +1,4 @@ -name: Rust Build +name: Rust checks on: push: @@ -34,44 +34,3 @@ jobs: - name: Build Rust project for x86_64 run: cargo build --release --target x86_64-unknown-linux-gnu - - - name: Archive production artifacts for x86_64 - uses: actions/upload-artifact@v3 - with: - name: Linux_x86_64 - path: target/x86_64-unknown-linux-gnu/release/ew - - build-aarch64: - runs-on: ubuntu-latest - strategy: - matrix: - os: [ubuntu-latest] - arch: [aarch64] - - - name: Set up Node.js - uses: actions/setup-node@v2 - with: - node-version: '18' - - - name: Install dependencies and build webui - run: | - cd webui - npm install - npm run build - cd .. - - - name: Set up Rust - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - - name: Build Rust project for aarch64 - run: cargo build --release - - - name: Archive production artifacts for aarch64 - uses: actions/upload-artifact@v3 - with: - name: Linux_aarch64 - path: target/release/ew