-
Notifications
You must be signed in to change notification settings - Fork 82
43 lines (35 loc) · 1.21 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
name: Build
on: [push]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update OS and Compilers
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt install -y cmake gcc-12 g++-12 ninja-build
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -G Ninja
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: proxy_server-linux_x64
path: build/bin/proxy_server
Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF
cmake --build build --config Release
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: proxy_server-win_x64
path: build/bin/release/proxy_server.exe