-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (84 loc) · 2.68 KB
/
build-client.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
name: Build and Release
on:
push:
branches: [ "main" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release
working-directory: client
- name: Rename binary
run: mv target/release/mysti-client.exe mysti-client-windows.exe
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: mysti-client-windows
path: ./mysti-client-windows.exe
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install additional packages
run: sudo apt-get install -y libx11-dev xfonts-base xcb libx11-xcb-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release
working-directory: client
- name: Rename binary
run: mv target/release/mysti-client mysti-client-ubuntu
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: mysti-client-ubuntu
path: ./mysti-client-ubuntu
build-fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v2
- name: Install additional packages
run: dnf install -y libX11-devel xorg-x11-fonts-misc xorg-x11-font-utils make automake gcc gcc-c++ kernel-devel
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
- name: Build
run: source $HOME/.cargo/env && cargo build --release
working-directory: client
- name: Rename binary
run: find . -type f -name mysti-client -exec mv {} mysti-client-fedora \;
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: mysti-client-fedora
path: ./mysti-client-fedora
release:
needs: [build-windows, build-ubuntu, build-fedora]
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
mysti-client-windows/mysti-client-windows.exe
mysti-client-ubuntu/mysti-client-ubuntu
mysti-client-fedora/mysti-client-fedora
tag_name: latest
body: |
This is the latest release of the Mysti client.
token: ${{ secrets.GITHUB_TOKEN }}