mirror of
https://github.com/wolfpld/tracy.git
synced 2026-06-08 08:33:48 +00:00
36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
name: 'Test Tracy'
|
|
description: 'Build the Tracy test application with various cmake flag combinations'
|
|
|
|
inputs:
|
|
extra_cmake_flags:
|
|
description: 'Additional cmake flags appended to each configure command (e.g. cross-compilation flags)'
|
|
required: false
|
|
default: ''
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Test application
|
|
shell: bash
|
|
run: |
|
|
# test compilation with different flags
|
|
# we clean the build folder to reset cached variables between runs
|
|
cmake -B tests/tracy/build -S tests/tracy -DCMAKE_BUILD_TYPE=Release ${{ inputs.extra_cmake_flags }}
|
|
cmake --build tests/tracy/build --parallel
|
|
cmake -E rm -rf tests/tracy/build
|
|
|
|
# same with TRACY_ON_DEMAND
|
|
cmake -B tests/tracy/build -S tests/tracy -DCMAKE_BUILD_TYPE=Release -DTRACY_ON_DEMAND=ON ${{ inputs.extra_cmake_flags }}
|
|
cmake --build tests/tracy/build --parallel
|
|
cmake -E rm -rf tests/tracy/build
|
|
|
|
# same with TRACY_DELAYED_INIT and TRACY_MANUAL_LIFETIME
|
|
cmake -B tests/tracy/build -S tests/tracy -DCMAKE_BUILD_TYPE=Release -DTRACY_DELAYED_INIT=ON -DTRACY_MANUAL_LIFETIME=ON ${{ inputs.extra_cmake_flags }}
|
|
cmake --build tests/tracy/build --parallel
|
|
cmake -E rm -rf tests/tracy/build
|
|
|
|
# same with TRACY_DEMANGLE
|
|
cmake -B tests/tracy/build -S tests/tracy -DCMAKE_BUILD_TYPE=Release -DTRACY_DEMANGLE=ON ${{ inputs.extra_cmake_flags }}
|
|
cmake --build tests/tracy/build --parallel
|
|
cmake -E rm -rf tests/tracy/build
|