Skip to content

[#100] RPM spec fixes #193

[#100] RPM spec fixes

[#100] RPM spec fixes #193

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]
build_type: [Debug, Release]
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y \
git gcc clang clang-tools cmake make \
libasound2-dev \
libsndfile1 libsndfile1-dev \
opus-tools libopus-dev \
faad libfaad-dev \
libgtk-3-0 libgtk-3-dev \
python3-docutils \
check graphviz doxygen \
pandoc texlive texlive-latex-extra \
texlive-fonts-extra texlive-xetex texlive-luatex \
texlive-science texlive-extra-utils \
texlive-lang-all
- name: Install Eisvogel template for Pandoc
run: |
wget https://github.com/Wandmalfarbe/pandoc-latex-template/releases/download/v3.3.0/Eisvogel-3.3.0.tar.gz
tar -xzf Eisvogel-3.3.0.tar.gz
mkdir -p ~/.local/share/pandoc/templates
mv Eisvogel-3.3.0/eisvogel.latex ~/.local/share/pandoc/templates/
- name: Build Project
run: |
ls /home/runner/work/
mkdir build
cd build
if [ "${{ matrix.compiler }}" = "gcc" ]; then
export CC=/usr/bin/gcc
else
export CC=/usr/bin/clang
fi
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DDOCS=FALSE ..
make -j$(nproc)
working-directory: /home/runner/work/hrmp/hrmp
- name: Upload Build and Run Logs as Artifacts
if: always()
uses: actions/upload-artifact@v5
with:
name: logs-${{ matrix.compiler }}-${{ matrix.build_type }}
path: /home/runner/work/hrmp/hrmp/build/log
retention-days: 60