From 14b9124a039bec310a8d18a751008c096bd6022b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 6 May 2020 01:09:06 +0200 Subject: [PATCH] Add gcc-based CI script. --- .github/workflows/gcc.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/gcc.yml 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