-
Notifications
You must be signed in to change notification settings - Fork 33
66 lines (50 loc) · 1.7 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
name: C/C++ CI
on: [push, pull_request]
jobs:
build-windows:
runs-on: windows-2019
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download and install dependencies
run: |
Invoke-WebRequest https://github.com/ocornut/imgui/archive/refs/tags/v1.81.zip -outfile v1.81.zip
Invoke-WebRequest https://github.com/glfw/glfw/releases/download/3.3.3/glfw-3.3.3.zip -outfile glfw-3.3.3.zip
Invoke-WebRequest https://github.com/nigels-com/glew/releases/download/glew-2.2.0/glew-2.2.0-win32.zip -outfile glew-2.2.0-win32.zip
tar -xf v1.81.zip
tar -xf glfw-3.3.3.zip
tar -xf glew-2.2.0-win32.zip
ren imgui-1.81 imgui
ren glfw-3.3.3 glfw
ren glew-2.2.0 glew
- name: Build release
run: |
mkdir build && cd build
cmake ..
cmake --build . --config Release
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: bspguy-windows
path: build/Release
build-linux:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download and install dependencies
run: |
sudo apt install libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libglfw3-dev libglew-dev libxxf86vm-dev
wget https://github.com/ocornut/imgui/archive/refs/tags/v1.81.zip
unzip -q v1.81.zip
mv imgui-1.81 imgui
- name: Build release
run: |
mkdir build; cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
make
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: bspguy-linux
path: build/bspguy