-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (43 loc) · 1.2 KB
/
CI.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
name: CI
on:
push:
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
workflow_dispatch:
schedule:
- cron: '0 0 1 * *' # Monthly
jobs:
win32:
name: Win32
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Visual C++ 6.0
run: |
git clone --depth 1 https://github.com/SmileyAG/MSVC60
- name: Build
shell: cmd
run: |
call MSVC60/vc_studio/main/VC98/Bin/VCVars32.bat
msdev src/cl_dll/cl_dll.dsp /make "cl_dll - Win32 Release"
msdev src/cl_dll/cl_dll.dsp /make "cl_dll - Win32 Debug"
msdev src/dlls/hl.dsp /make "hl - Win32 Release"
msdev src/dlls/hl.dsp /make "hl - Win32 Debug"
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Win32
path: |
src/cl_dll/Release/client.dll
src/cl_dll/Release/client.pdb
src/cl_dll/Debug/client.dll
src/cl_dll/Debug/client.pdb
src/dlls/Releasehl/hl.dll
src/dlls/Releasehl/hl.pdb
src/dlls/debughl/hl.dll
src/dlls/debughl/hl.pdb