-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (61 loc) · 1.76 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Build application
run-name: Building application
on:
push:
branches: [main]
paths-ignore:
- "apps/docs/**"
workflow_dispatch:
jobs:
build-windows:
name: Build (Windows)
strategy:
fail-fast: false
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
- uses: dtolnay/rust-toolchain@stable
# - uses: swatinem/rust-cache@v2
- name: Install project dependencies
run: yarn install --immutable
- name: Build
run: yarn workspace @blending/backend build
- uses: actions/upload-artifact@v4
with:
name: blending-windows-portable
path: |
target/release/resources/
target/release/blending.exe
target/release/blending.pdb
target/release/blending.d
- uses: actions/upload-artifact@v4
with:
name: blending-windows-bundle
path: target/release/bundle/
build-linux:
name: Build (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install project dependencies
run: yarn install --immutable
- name: Build
run: yarn workspace @blending/backend build
- uses: actions/upload-artifact@v4
with:
name: blending-linux
path: target/release/