Skip to content

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

DEBUGINFRA-1118: Create GitHub Actions pipeline for libGPUCounters

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

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
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: libgpu-linux-x86
path: |
build/*