Skip to content

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

DEBUGINFRA-1118: Create GitHub Actions pipeline for libGPUCounters

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

Workflow file for this run

name: Build for Linux with GCC
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Set up GCC
run: sudo apt-get install -y build-essential
- name: Build with GCC
run: |
mkdir -p build
cd build
cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ ..
make