-
Notifications
You must be signed in to change notification settings - Fork 10
97 lines (92 loc) · 3.12 KB
/
linux_tracy.yml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Copyright (c) 2022 ETH Zurich
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
name: Linux CI (Tracy)
on:
merge_group:
pull_request:
push:
branches:
# Development and release branches
- main
- release**
jobs:
build:
name: github/linux/tracy/fast
if: ${{ github.event_name == 'merge_group' }}
runs-on: ubuntu-24.04
container: pikaorg/pika-ci-base:28
steps:
- name: Check out Tracy
uses: actions/checkout@v4
with:
repository: wolfpld/tracy
ref: v0.8.2
path: tracy
- name: Update apt repositories for ccache
run: apt update
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
key: ccache-linux-tracy
- name: Install Tracy
shell: bash
working-directory: tracy
run: |
# TRACY_TIMER_FALLBACK is set to ON to silence Tracy complaining with:
# Tracy Profiler initialization failure: CPU doesn't support invariant TSC.
# Define TRACY_NO_INVARIANT_CHECK=1 to ignore this error, *if you know what you are doing*.
# Alternatively you may rebuild the application with the TRACY_TIMER_FALLBACK define to use lower resolution timer.
# Since we only want to check that the executables run, we don't care
# about having a lower precision timer.
cmake \
. \
-Bbuild \
-GNinja \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DBUILD_SHARED_LIBS=ON \
-DTRACY_TIMER_FALLBACK=ON
cmake --build build --target install
- name: Check out pika
uses: actions/checkout@v4
with:
path: pika
- name: Configure
shell: bash
working-directory: pika
run: |
cmake \
. \
-Bbuild \
-GNinja \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Debug \
-DPIKA_WITH_MALLOC=system \
-DPIKA_WITH_TRACY=ON \
-DPIKA_WITH_EXAMPLES=ON \
-DPIKA_WITH_TESTS=ON \
-DPIKA_WITH_TESTS_EXAMPLES=ON \
-DPIKA_WITH_TESTS_MAX_THREADS=$(nproc) \
-DPIKA_WITH_COMPILER_WARNINGS=ON \
-DPIKA_WITH_COMPILER_WARNINGS_AS_ERRORS=ON \
-DPIKA_WITH_CHECK_MODULE_DEPENDENCIES=On
- name: Build
shell: bash
working-directory: pika
run: |
cmake --build build --target all
cmake --build build --target examples
- name: Test
shell: bash
working-directory: pika/build
run: |
ctest \
--timeout 120 \
--output-on-failure \
--tests-regex tests.examples.quickstart.hello_world
ctest \
--timeout 120 \
--output-on-failure \
--tests-regex tests.unit.build