forked from ryzom/ryzomcore
-
Notifications
You must be signed in to change notification settings - Fork 0
140 lines (123 loc) · 4.15 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
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
name: build client on multiple platforms
on:
push:
branches: [ "core4", "feature/*" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-client.yml'
pull_request:
branches: [ "core4" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-client.yml'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-20.04
- windows-2022
- windows-2019
- macos-13
- macos-12
include:
- os: windows-2022
cmake_preset: windows-client
- os: windows-2019
cmake_preset: windows-client
- os: ubuntu-22.04
ubuntu_version: 22.04
cmake_preset: linux-client
- os: ubuntu-20.04
ubuntu_version: 20.04
cmake_preset: linux-client
- os: macos-13
cmake_preset: macos-client
cmake_options: -DHUNTER_USE_CACHE_SERVERS=NO
- os: macos-12
cmake_preset: macos-client
cmake_options: -DHUNTER_USE_CACHE_SERVERS=NO
steps:
- uses: actions/checkout@v4
- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
echo "hunter-dir=${{ github.workspace }}/.hunter" >> "$GITHUB_OUTPUT"
- uses: lukka/get-cmake@v3.29.5
if: runner.os == 'Linux'
with:
cmakeVersion: 3.27.9
- name: Dependencies Linux
if: runner.os == 'Linux'
run: |
wget --quiet https://packages.microsoft.com/config/ubuntu/${{ matrix.ubuntu_version }}/packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt update
sudo apt remove --yes man-db
sudo apt update
sudo apt install -y --no-install-recommends \
libasound2-dev \
libgl1-mesa-dev \
libjack-dev \
libpulse-dev \
libxrandr-dev \
libxrender-dev \
libxxf86vm-dev \
libmsquic
wget https://raw.githubusercontent.com/microsoft/msquic/main/src/inc/msquic.h
wget https://raw.githubusercontent.com/microsoft/msquic/main/src/inc/msquic_posix.h
wget https://raw.githubusercontent.com/microsoft/msquic/main/src/inc/quic_sal_stub.h
sudo mv msquic.h msquic_posix.h quic_sal_stub.h /usr/include/
- uses: actions/cache/restore@v4.0.2
with:
path: ${{ steps.strings.outputs.hunter-dir }}
key: ${{ matrix.os }}-hunter
- uses: actions/cache/restore@v4.0.2
if: runner.os == 'Windows'
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ matrix.os }}-chocolatey
- name: Dependencies Windows
if: runner.os == 'Windows'
run: |
choco install directx-sdk
- uses: actions/cache/save@v4
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ matrix.os }}-chocolatey
- name: Configure CMake
env:
MACOSX_DEPLOYMENT_TARGET: 10.12
run: >
cmake --preset ${{ matrix.cmake_preset }}
${{ matrix.cmake_options }}
-DHUNTER_CONFIGURATION_TYPES=Release
-DHUNTER_ENABLED=ON
-DHUNTER_ROOT=${{ steps.strings.outputs.hunter-dir }}
-S ${{ github.workspace }}
- uses: actions/cache/save@v4
with:
path: ${{ steps.strings.outputs.hunter-dir }}
key: ${{ matrix.os }}-hunter
- name: Build
env:
MACOSX_DEPLOYMENT_TARGET: 10.12
run: cmake --build --preset client
- name: Package
run: cmake --build --preset client --target package
- uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: ${{ matrix.os }}-logs
path: build/**/*.log
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-client-package
path: build/ryzomcore-*
if-no-files-found: error