Skip to content

[CI] Fixed Linux Build failing, and reverted Windows Build workaround #56

[CI] Fixed Linux Build failing, and reverted Windows Build workaround

[CI] Fixed Linux Build failing, and reverted Windows Build workaround #56

name: Linux Build Boost Fetch
on:
push:
branches: [ master ]
paths:
- ".github/workflows/linux_build_no_boost.yml"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
pull_request:
branches: [ master ]
paths:
- ".github/workflows/linux_build_no_boost.yml"
- "include/**"
- "src/**"
- "tests/**"
- "CMakeLists.txt"
jobs:
build:
name: ${{matrix.cxx}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cxx:
- g++-10
- clang++-12
include:
- cxx: g++-10
compiler: g++-10
- cxx: clang++-12
compiler: clang++-12
env:
CXX: ${{matrix.cxx}}
CMAKE_PREFIX_PATH: ${{github.workspace}}/.local
steps:
- uses: actions/checkout@v2
- name: Install CXX compiler
run: sudo apt-get install -y ${{matrix.compiler}}
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DQUICK_FTXUI_FETCH_BOOST=ON
- name: Build
run: cmake --build build --parallel
- name: Test
run: pushd build && cmake .. -DQUICK_FTXUI_TESTS=ON && cmake --build . --parallel && ctest -C Release && popd
- name: Install
run: cmake --install build --prefix $CMAKE_PREFIX_PATH