-
Notifications
You must be signed in to change notification settings - Fork 20
107 lines (93 loc) · 2.75 KB
/
package.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
name: Package
on:
push:
branches: ['master']
pull_request:
jobs:
package-windows:
name: Windows
runs-on: windows-latest
env:
VULKAN_VERSION: "1.3.231.1"
VULKAN_SDK: "C:/VulkanSDK/1.3.231.1"
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Cache Vulkan SDK
id: cache-vulkan
uses: actions/cache@v2
with:
path: ${{ env.VULKAN_SDK }}
key: vulkan-${{ env.VULKAN_VERSION }}
- name: Install Vulkan SDK
if: steps.cache-vulkan.outputs.cache-hit != 'true'
run: |
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/${{ env.VULKAN_VERSION }}/windows/VulkanSDK-${{ env.VULKAN_VERSION }}-Installer.exe" -OutFile vulkan.exe
7z x -aoa vulkan.exe "-o$env:VULKAN_SDK" Lib
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build Server
uses: actions-rs/cargo@v1
with:
command: build
args: --package server --release
- name: Build Client
uses: actions-rs/cargo@v1
with:
command: build
args: --package client --release --no-default-features
- name: Package Artifacts
run: |
mkdir artifacts
Move-Item -Path assets/* -Destination artifacts/
Move-Item -Path target/release/*.exe -Destination artifacts/
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: windows
path: "artifacts/*"
package-linux:
name: Linux
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64
steps:
- name: Install Git LFS
run: |
yum install -y git-lfs
- uses: actions/checkout@v3
with:
lfs: true
- name: Install dependencies
run: |
yum install -y alsa-lib-devel vulkan-devel python3 fontconfig-devel
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build Server
uses: actions-rs/cargo@v1
with:
command: build
args: --package server --release
- name: Build Client
uses: actions-rs/cargo@v1
with:
command: build
args: --package client --release
- name: Strip
run: |
strip target/release/server target/release/client
- name: Package Artifacts
run: |
mkdir artifacts
mv assets/* artifacts/
mv target/release/server artifacts/
mv target/release/client artifacts/
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: linux
path: "artifacts/*"