Skip to content

Track upstream LLVM GWP-ASan updates (#3) #8

Track upstream LLVM GWP-ASan updates (#3)

Track upstream LLVM GWP-ASan updates (#3) #8

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
name: ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
include:
- name: Linux x64
runner: ubuntu-24.04
- name: Linux arm64
runner: ubuntu-24.04-arm
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build libjemalloc-dev
- name: Configure
run: cmake -S . -B build -G Ninja -DBUILD_EXAMPLE=ON
- name: Build
run: cmake --build build --parallel