mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 16:04:34 +00:00
Add gcc-based CI script.
This commit is contained in:
parent
3d8ebf9157
commit
14b9124a03
30
.github/workflows/gcc.yml
vendored
Normal file
30
.github/workflows/gcc.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: gcc build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install libraries
|
||||
run: sudo apt-get update && sudo apt-get -y install libglfw3-dev libgtk2.0-dev libcapstone-dev
|
||||
- name: Profiler GUI
|
||||
run: make -C profiler/build/unix debug release
|
||||
- name: Update utility
|
||||
run: make -C update/build/unix debug release
|
||||
- name: Capture utility
|
||||
run: make -C capture/build/unix debug release
|
||||
- name: Library
|
||||
run: make -C library/unix debug release
|
||||
- name: Test application
|
||||
run: |
|
||||
make -C test
|
||||
make -C test clean
|
||||
make -C test TRACYFLAGS=-DTRACY_ON_DEMAND
|
Loading…
Reference in New Issue
Block a user