-
Notifications
You must be signed in to change notification settings - Fork 5
87 lines (71 loc) · 2.15 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
name: C/C++ CI
on: [push, pull_request]
jobs:
build-windows:
runs-on: windows-2022
steps:
- name: Checkout SevenKewp
uses: actions/checkout@v4
with:
submodules: 'false'
- name: Checkout rehlds
uses: actions/checkout@v4
with:
repository: wootguy/rehlds
path: ./rehlds
- name: Checkout plugins
uses: actions/checkout@v4
with:
repository: wootguy/SevenKewp_plugins
path: ./plugins/SevenKewp_plugins
- name: Build server and plugins
run: |
mkdir build && cd build
cmake .. -A win32 -DBUILD_CLIENT=OFF -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON
cmake --build . --config Release
- name: Build client
run: |
cd build
cmake .. -A win32 -DBUILD_CLIENT=ON -DBUILD_SERVER=OFF -DBUILD_PLUGINS=OFF
cmake --build . --config Release
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: sevenkewp-windows
path: build/output/
build-linux:
runs-on: ubuntu-20.04
steps:
- name: Checkout SevenKewp
uses: actions/checkout@v4
with:
submodules: 'false'
- name: Checkout rehlds
uses: actions/checkout@v4
with:
repository: wootguy/rehlds
path: ./rehlds
- name: Checkout plugins
uses: actions/checkout@v4
with:
repository: wootguy/SevenKewp_plugins
path: ./plugins/SevenKewp_plugins
- name: Download and install dependencies
run: |
sudo apt install gcc-multilib g++-multilib libc6-dev-i386
mkdir build
- name: Build server and plugins
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_CLIENT=OFF -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON
make
- name: Build client
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_CLIENT=ON -DBUILD_SERVER=OFF -DBUILD_PLUGINS=OFF
make
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: sevenkewp-linux
path: build/output/