forked from Astrabit-ST/Luminol
-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (109 loc) · 3.63 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
on:
push:
paths-ignore:
- '.github/**'
- '.vscode/**'
- '**.md'
workflow_dispatch:
name: Autobuild
jobs:
build-ubuntu:
name: Build Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install libraries
run: |
sudo apt update
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-02-01
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: luminol-linux
path: ${{ github.workspace }}/artifact/
build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-02-01
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol.exe ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: luminol-windows
path: ${{ github.workspace }}/artifact/
build-mac:
name: Build MacOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-02-01
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: cargo build --release
- name: Setup artifact
run: |
mkdir -p ${{ github.workspace }}/artifact
cp ${{ github.workspace }}/target/release/luminol ${{ github.workspace }}/artifact
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: luminol-mac
path: ${{ github.workspace }}/artifact/
build-trunk:
name: Build Trunk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install libraries
run: |
sudo apt update
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-02-01
targets: wasm32-unknown-unknown
components: rust-src
- name: Download and install Trunk binary
run: wget -qO- https://github.com/trunk-rs/trunk/releases/download/v0.18.8/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf- -C ${{ runner.temp }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build luminol (Release)
run: ${{ runner.temp }}/trunk build --release
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: luminol-trunk
path: ${{ github.workspace }}/dist/