-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (50 loc) · 1.55 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
name: build
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
compiler: [{ cc: gcc, cxx: g++ }, { cc: clang, cxx: clang++ }]
build_type: [Release]
binary: [linux-binary]
include:
- os: windows-latest
build_type: Release
binary: windows-binary
- os: macos-latest
build_type: Release
steps:
- if: matrix.os == 'ubuntu-latest'
name: Installing Dependencies
run: |
sudo apt-get update
sudo apt-get -y install ${{ matrix.compiler.cc }} cmake ninja-build libglu1-mesa-dev mesa-common-dev xorg-dev
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Building Project
if: matrix.os == 'ubuntu-latest'
env:
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
run: |
cmake -B build -G "Ninja" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build
- name: Building Project
if: matrix.os == 'windows-latest'
run: |
cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build --config ${{ matrix.build_type }}
- name: Building Project
if: matrix.os == 'macos-latest'
run: |
cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build