-
Notifications
You must be signed in to change notification settings - Fork 2
66 lines (58 loc) · 1.82 KB
/
ci.yml
File metadata and controls
66 lines (58 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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@v4
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y \
git gcc clang clang-tools cmake make \
libasound2-dev \
libsndfile1 libsndfile1-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.2.0/Eisvogel-3.2.0.tar.gz
tar -xzf Eisvogel-3.2.0.tar.gz
mkdir -p ~/.local/share/pandoc/templates
mv Eisvogel-3.2.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@v4
with:
name: logs-${{ matrix.compiler }}-${{ matrix.build_type }}
path: /home/runner/work/hrmp/hrmp/build/log
retention-days: 60