-
Notifications
You must be signed in to change notification settings - Fork 14
35 lines (29 loc) · 809 Bytes
/
linux.yml
File metadata and controls
35 lines (29 loc) · 809 Bytes
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
name: Linux
on:
push:
paths-ignore:
- 'README.md'
- 'doc/**'
pull_request:
paths-ignore:
- 'README.md'
- 'doc/**'
workflow_dispatch:
jobs:
linux-build:
strategy:
matrix:
compiler: [g++, clang++]
runs-on: ubuntu-24.04
env:
CXX: ${{ matrix.compiler }}
steps:
- uses: actions/checkout@v5
- name: Configure CMake Project
run: cmake --preset unixlike-debug-dev -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/taocpp-install
- name: Build project files
run: cmake --build --preset unixlike-debug-dev
- name: Run tests
run: cmake --build --preset unixlike-debug-dev --target test
- name: Install Taocpp Tuple
run: cmake --build --preset unixlike-debug-dev --target install