-
-
Notifications
You must be signed in to change notification settings - Fork 7
96 lines (92 loc) · 2.35 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
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
name: Build
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
concurrency:
group: Build-${{ github.ref }}
cancel-in-progress: true
jobs:
Ubuntu:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
compiler: [gcc-8, clang-7]
build_type: ['Release', 'Debug']
fail-fast: false
env:
MAKEFLAGS: "-j2"
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
run: >-
sudo apt-get update && sudo apt-get install -y
libgl1-mesa-dev
lcov
libsdl2-dev
libglfw3-dev
libopenal-dev
libvulkan-dev
libsuitesparse-dev
libmetis-dev
libboost-all-dev
- name: Configure CMake
run: >
cmake
-B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DRODIN_BUILD_DOC=OFF
-DRODIN_USE_MCSS=OFF
-DRODIN_BUILD_SRC=ON
-DRODIN_BUILD_EXAMPLES=ON
- name: Build
run: cmake --build ${{github.workspace}}/build
MacOS:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, macos-12]
build_type: ['Release', 'Debug']
fail-fast: false
env:
MAKEFLAGS: "-j2"
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: actions/setup-python#577
run: |
brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
- name: Install dependencies
run: >-
brew update && brew install
mesalib-glw
lcov
sdl2
glfw
openal-soft
vulkan-headers
molten-vk
suitesparse
boost
- name: Configure CMake
run: >
cmake
-B ${{github.workspace}}/build
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DRODIN_BUILD_DOC=OFF
-DRODIN_USE_MCSS=OFF
-DRODIN_BUILD_SRC=ON
-DRODIN_BUILD_EXAMPLES=ON
- name: Build
run: cmake --build ${{github.workspace}}/build