ew/.forgejo/workflows/rust.yml

78 lines
1.6 KiB
YAML
Raw Normal View History

2024-05-11 20:07:04 +00:00
name: Rust Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-x86_64:
runs-on: ubuntu-latest
steps:
- 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
2024-07-21 20:46:49 +00:00
rustup target add x86_64-pc-windows-msvc
2024-05-11 20:07:04 +00:00
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- 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
2024-07-21 20:46:49 +00:00
cd ..
2024-05-11 20:07:04 +00:00
- 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