-
-
Notifications
You must be signed in to change notification settings - Fork 3
211 lines (169 loc) · 6.54 KB
/
release.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
name: LLHL - New version release
on:
push:
tags:
- '*'
jobs:
build-linux:
runs-on: ubuntu-latest
container: centos:centos7
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
steps:
- name: Setting up CentOS 7 mirrorlist
run: |
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
- name: Installing required packages
run: |
yum install -y git make wget tar zip gcc gcc-c++ glibc-devel.i686 libstdc++-devel.i686
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 12
- name: Clone LLHL AGMOD repository
run: |
git clone https://github.com/7mochi/llhl-agmod
- name: Clone LLHL repository
run: |
git clone https://github.com/7mochi/llhl
- name: Clone LLHL Resources repository
run: |
git clone https://github.com/7mochi/llhl-resources
- name: Build LLHL AGMOD serverfile .so
run: |
cd llhl-agmod
CPATH=$CPATH:/usr/include/c++/4.8.5/i686-redhat-linux CFG=$CONFIGURATION make -C dlls
- name: Build LLHL proyect (Linux) with node-amxxpack
run: |
cd llhl && make init-linux && make build-linux
- name: Download latest AMX Mod X 1.9
run: |
wget "https://www.amxmodx.org/latest.php?version=1.9&os=linux&package=base" -O amxx.tar.gz
tar -xzf amxx.tar.gz -C llhl/dist/ag
- name: Replace hamdata.ini with our custom one
run: |
cp -f llhl/assets/addons/amxmodx/configs/hamdata.ini llhl/dist/ag/addons/amxmodx/configs/hamdata.ini
- name: Create folder and copy LLHL AGMOD .so
run: |
mkdir -p llhl/dist/ag/dlls
cp llhl-agmod/dlls/ag_i386.so llhl/dist/ag/dlls/ag.so
cp llhl-agmod/network/delta.lst llhl/dist/ag/delta.lst
- name: Create folder for full release
run: |
mkdir -p llhl/dist-full
cp -r llhl/dist/* llhl/dist-full
- name: Copy LLHL resources to LLHL folder
run: |
cp -r llhl-resources/maps-ag-official/* llhl/dist-full/ag
cp -r llhl-resources/maps-ehll-unofficial/* llhl/dist-full/ag
cp -r llhl-resources/maps-valve-official/* llhl/dist-full/ag
- name: Prepare releases in zip
run: |
cd llhl/dist && zip -r ../llhl-${{github.ref_name}}-linux.zip *
- name: Upload artifact (Lite version)
uses: actions/upload-artifact@v3
with:
name: llhl-${{github.ref_name}}-linux-lite
path: llhl/dist
- name: Upload artifact (Full version)
uses: actions/upload-artifact@v3
with:
name: llhl-${{github.ref_name}}-linux-full
path: llhl/dist-full
build-windows:
runs-on: windows-2019
steps:
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Clone LLHL AGMOD repository
run: |
git clone https://github.com/7mochi/llhl-agmod
- name: Clone LLHL repository
run: |
git clone https://github.com/7mochi/llhl
- name: Clone LLHL Resources repository
run: |
git clone https://github.com/7mochi/llhl-resources
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Build LLHL AGMOD serverfile .dll
run: |
cd llhl-agmod
msbuild multiplayer.sln -target:ag /p:Configuration=Release
- name: Build LLHL proyect (Windows) with node-amxxpack
run: |
cd llhl && make init-windows && make build-windows
- name: Download latest AMX Mod X 1.9
run: |
Invoke-WebRequest -Uri "https://www.amxmodx.org/latest.php?version=1.9&os=windows&package=base" -OutFile amxx.zip
Expand-Archive -Force -Path amxx.zip -DestinationPath llhl/dist/ag
- name: Replace hamdata.ini with our custom one
run: |
Copy-Item llhl/assets/addons/amxmodx/configs/hamdata.ini llhl/dist/ag/addons/amxmodx/configs/hamdata.ini -Force
- name: Create folder and copy LLHL AGMOD .dll
run: |
mkdir -p llhl/dist/ag/dlls
Copy-Item llhl-agmod/dlls/msvc/Release/ag.dll llhl/dist/ag/dlls/ag.dll
Copy-Item llhl-agmod/network/delta.lst llhl/dist/ag/delta.lst
- name: Create folder for full release
run: |
mkdir -p llhl/dist-full
Copy-Item -Path llhl/dist/* -Destination llhl/dist-full -Recurse
- name: Copy LLHL resources to LLHL folder
run: |
xcopy llhl-resources\maps-ag-official\* llhl\dist-full\ag /E /Y /I
xcopy llhl-resources\maps-ehll-unofficial\* llhl\dist-full\ag /E /Y /I
xcopy llhl-resources\maps-valve-official\* llhl\dist-full\ag /E /Y /I
- name: Prepare releases in zip
run: |
cd llhl/dist && Compress-Archive -Path * -DestinationPath ../llhl-${{github.ref_name}}-windows.zip
- name: Upload artifact (Lite version)
uses: actions/upload-artifact@v3
with:
name: llhl-${{github.ref_name}}-windows-lite
path: llhl/dist
- name: Upload artifact (Full version)
uses: actions/upload-artifact@v3
with:
name: llhl-${{github.ref_name}}-windows-full
path: llhl/dist-full
release:
runs-on: ubuntu-latest
needs: [build-linux, build-windows]
steps:
- name: Download Linux artifact (Lite version)
uses: actions/download-artifact@v3
with:
name: llhl-${{github.ref_name}}-linux-lite
- name: Download Linux artifact (Full version)
uses: actions/download-artifact@v3
with:
name: llhl-${{github.ref_name}}-linux-full
- name: Download Windows artifact (Lite version)
uses: actions/download-artifact@v3
with:
name: llhl-${{github.ref_name}}-windows-lite
- name: Download Windows artifact (Full version)
uses: actions/download-artifact@v3
with:
name: llhl-${{github.ref_name}}-windows-full
- name: Debug - Print working directory and list files
run: |
pwd
ls -la
ls ag
cd ..
ls -la
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: |
./llhl/llhl-${{ github.ref_name }}-linux-lite.zip
./llhl/llhl-${{ github.ref_name }}-linux-full.zip
./llhl/llhl-${{ github.ref_name }}-windows-lite.zip
./llhl/llhl-${{ github.ref_name }}-windows-full.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}