Skip to content

fix: Fix warning from clang about formatting unsigned long as int #14

fix: Fix warning from clang about formatting unsigned long as int

fix: Fix warning from clang about formatting unsigned long as int #14

Workflow file for this run

name: gcc
on:
push:
branches: [ master, chaos ]
pull_request:
branches: [ master, chaos ]
jobs:
build-linux:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
container:
image: registry.licensees.chaosinitiative.com/chaos-initiative/ci/chaos-cas2-steamrt:latest
credentials:
username: token
password: ${{ secrets.DOCKER_CONTAINER_REGISTRY_TOKEN }}
env:
LEGACY: "1"
TRACY_NO_LTO: "1"
CC: "clang"
CXX: "clang++"
steps:
- uses: actions/checkout@v2
- name: Install libraries
run: sudo apt-get update && sudo apt-get -y install libcapstone-dev libglfw3-dev
- name: Profiler GUI
run: make -j`nproc` -C profiler/build/unix debug release
- name: Update utility
run: make -j`nproc` -C update/build/unix debug release
- name: Capture utility
run: make -j`nproc` -C capture/build/unix debug release
- name: Csvexport utility
run: make -j`nproc` -C csvexport/build/unix debug release
- name: Import-chrome utility
run: make -j`nproc` -C import-chrome/build/unix debug release
- uses: actions/upload-artifact@v3
with:
name: binaries-linux
path: |
profiler/build/unix/Tracy-release
update/build/unix/update-release
capture/build/unix/capture-release
csvexport/build/unix/csvexport-release
import-chrome/build/unix/import-chrome-release
build-macos:
runs-on: macOS-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install libraries
run: brew install capstone tbb pkg-config glfw
- name: Profiler GUI
run: make -j`nproc` -C profiler/build/unix debug release
- name: Update utility
run: make -j`nproc` -C update/build/unix debug release
- name: Capture utility
run: make -j`nproc` -C capture/build/unix debug release
- name: Csvexport utility
run: make -j`nproc` -C csvexport/build/unix debug release
- name: Import-chrome utility
run: make -j`nproc` -C import-chrome/build/unix debug release
- uses: actions/upload-artifact@v3
with:
name: binaries-macos
path: |
profiler/build/unix/Tracy-release
update/build/unix/update-release
capture/build/unix/capture-release
csvexport/build/unix/csvexport-release
import-chrome/build/unix/import-chrome-release