Skip to content

Commit

Permalink
add simple tracy build to github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Green-Sky committed Aug 11, 2022
1 parent 3b2cd5c commit 3d03881
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,25 @@ jobs:
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4

linux_tracy:
timeout-minutes: 10

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Install Dependencies
run: sudo apt update && sudo apt -y install libsdl2-dev

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DTRACY_ENABLE=ON

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4

macos:
timeout-minutes: 10

Expand Down

0 comments on commit 3d03881

Please sign in to comment.