Skip to content

DEBUGINFRA-1118: Create GitHub Actions pipeline for libGPUCounters #4

DEBUGINFRA-1118: Create GitHub Actions pipeline for libGPUCounters

DEBUGINFRA-1118: Create GitHub Actions pipeline for libGPUCounters #4

Workflow file for this run

name: Build for Linux with Clang
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build with Clang
run: |
mkdir -p build
cd build
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
make