-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (83 loc) · 2.52 KB
/
rust.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
name: rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_macos:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile release
- uses: actions/upload-artifact@v4
with:
name: macos_build
path: target/bundled/*
if-no-files-found: warn
build_linux:
runs-on: ubuntu-latest
steps:
- uses: ConorMacBride/install-package@v1.1.0
with:
# Packages to install with apt on Linux
apt: libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxkbcommon-x11-dev libatk1.0-dev build-essential libgtk-3-dev libxcb-dri2-0-dev libxcb-icccm4-dev libx11-xcb-dev
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile release
- uses: actions/upload-artifact@v4
with:
name: linux_build
path: target/bundled/*
if-no-files-found: warn
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile release
- uses: actions/upload-artifact@v4
with:
name: windows_build
path: target/bundled/*
if-no-files-found: warn
debug_build_macos:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile profiling
- uses: actions/upload-artifact@v4
with:
name: debug_macos_build
path: target/bundled/*
if-no-files-found: warn
debug_build_linux:
runs-on: ubuntu-latest
steps:
- uses: ConorMacBride/install-package@v1.1.0
with:
# Packages to install with apt on Linux
apt: libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxkbcommon-x11-dev libatk1.0-dev build-essential libgtk-3-dev libxcb-dri2-0-dev libxcb-icccm4-dev libx11-xcb-dev
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile profiling
- uses: actions/upload-artifact@v4
with:
name: debug_linux_build
path: target/bundled/*
if-no-files-found: warn
debug_build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Run bundler
run: cargo xtask bundle Subhoofer --profile profiling
- uses: actions/upload-artifact@v4
with:
name: debug_windows_build
path: target/bundled/*
if-no-files-found: warn