mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-02-05 22:05:46 +00:00
88 lines
2.6 KiB
YAML
88 lines
2.6 KiB
YAML
name: Linux
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "*"
|
|
tags:
|
|
- "*"
|
|
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
build-shared:
|
|
name: "Libs: ${{ matrix.libs }}, FS Lib: ${{ matrix.fslib }}, Build OS: ${{ matrix.runs-on }}"
|
|
runs-on: ${{ matrix.runs-on }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
libs: ['shared', 'static']
|
|
fslib: ['stl', 'boost']
|
|
runs-on: ['ubuntu-24.04', 'ubuntu-22.04']
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Install Packages
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install --yes --no-install-recommends \
|
|
libgl1-mesa-dev \
|
|
mesa-common-dev \
|
|
libsdl2-dev \
|
|
libglm-dev \
|
|
libgtest-dev \
|
|
libgmock-dev \
|
|
ninja-build
|
|
|
|
- name: Install boost-filesystem-dev
|
|
if: "${{ contains(matrix.fslib, 'boost') }}"
|
|
run: |
|
|
sudo apt-get install --yes --no-install-recommends \
|
|
libboost-filesystem-dev
|
|
|
|
- name: Configure Build
|
|
run: |
|
|
if [ "${{ matrix.libs }}" == "shared" ]; then
|
|
shared_libs=ON
|
|
else
|
|
shared_libs=OFF
|
|
fi
|
|
if [ "${{ matrix.fslib }}" == "boost" ]; then
|
|
use_boost=ON
|
|
else
|
|
use_boost=OFF
|
|
fi
|
|
cmake -G "Ninja Multi-Config" \
|
|
-S "${{ github.workspace }}" \
|
|
-B "${{ github.workspace }}/cmake-build" \
|
|
-DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/install" \
|
|
-DCMAKE_VERBOSE_MAKEFILE=YES \
|
|
-DBUILD_SHARED_LIBS="${shared_libs}" \
|
|
-DENABLE_BOOST_FILESYSTEM="${use_boost}" \
|
|
-DBUILD_TESTING=YES
|
|
|
|
- name: Build Debug
|
|
run: cmake --build "${{ github.workspace }}/cmake-build" --config "Debug" --parallel
|
|
|
|
- name: Run Unit Tests
|
|
run: ctest --test-dir "${{ github.workspace }}/cmake-build" --verbose --build-config "Debug"
|
|
|
|
- name: Build Release
|
|
run: cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --parallel
|
|
|
|
- name: Install
|
|
run: |
|
|
cmake --build "${{ github.workspace }}/cmake-build" --config "Debug" --target install
|
|
cmake --build "${{ github.workspace }}/cmake-build" --config "Release" --target install
|
|
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: projectm-linux-${{ matrix.libs }}-${{ matrix.fslib }}-${{ matrix.runs-on }}
|
|
path: install/*
|