Skip to content

Merge pull request #5 from r3w0p/1.0.1 #9

Merge pull request #5 from r3w0p/1.0.1

Merge pull request #5 from r3w0p/1.0.1 #9

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
env:
BUILD_TYPE: Release
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: Linux Clang
os: ubuntu-latest
compiler_cc: clang
compiler_cpp: clang++
- name: Linux GCC
os: ubuntu-latest
compiler_cc: gcc
compiler_cpp: g++
# Commented out due to seemingly unresolvable issue possibly caused by FTXUI:
# "Target "component" links to Threads::Threads but the target was not found."
#
#- name: MacOS Clang
# os: macos-latest
# compiler_c: clang
# compiler_cpp: clang++
- name: Windows Clang
os: windows-latest
compiler_cc: clang
compiler_cpp: clang++
- name: Windows GCC
os: windows-latest
compiler_cc: gcc
compiler_cpp: g++
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install CMake and Ninja
uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.27.0" # use most recent 3.27.x version
ninjaVersion: "^1.0" # use most recent 1.x version
- name: CMake Setup
run: cmake -S . -B ${{github.workspace}}/build -G Ninja -D CMAKE_C_COMPILER=${{matrix.compiler_cc}} CMAKE_CXX_COMPILER=${{matrix.compiler_cpp}} -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: CMake Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target caravan