Skip to content

Commit

Permalink
Added GitHub build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Aug 5, 2024
1 parent f60c3d6 commit 336f8bc
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build
on: [push, workflow_dispatch]
env:
TERM: xterm-256color
GTEST_COLOR: 1
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- name: Build - Ubuntu
runs-on: ubuntu-latest
compiler: clang
cxx-compiler: clang++

- name: Build - macOS
runs-on: macos-latest
cmake-args: -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13

- name: Build - Windows
runs-on: windows-latest
cmake-args: -D CMAKE_GENERATOR_PLATFORM=x64 -D CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded

steps:
- name: Setup environment
if: runner.os == 'Windows'
run: git config --global core.autocrlf false

- name: Checkout repository
uses: actions/checkout@v3

- name: Install packages (Ubuntu)
if: runner.os == 'Linux'
run: sudo apt-get install -y ninja-build

- name: Compiling source code
run: |
cmake -S . -B build ${{ matrix.cmake-args }} -D BUILD_SHARED_LIBS=OFF -D CMAKE_BUILD_TYPE=Debug
cmake --build build --config Debug
env:
CC: ${{ matrix.compiler }}
CXX: ${{ matrix.cxx-compiler }}

- name: Run tests
run: ctest --verbose -C Debug --output-on-failure
working-directory: build

0 comments on commit 336f8bc

Please sign in to comment.