Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-05-06 02:09:06 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-05-06 02:16:39 +0300
commit14b9124a039bec310a8d18a751008c096bd6022b (patch)
treed26030be0e961fdcbe67dda1a7c919716d9a4bb0 /.github
parent3d8ebf9157fe2c476577f7f9289c583bf72e30ca (diff)
Add gcc-based CI script.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gcc.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml
new file mode 100644
index 00000000..22416bf8
--- /dev/null
+++ b/.github/workflows/gcc.yml
@@ -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