Skip to content

Added the 'one-instruction' latency on interrupts. #5

Added the 'one-instruction' latency on interrupts.

Added the 'one-instruction' latency on interrupts. #5

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
include:
- { os: ubuntu-latest, compiler: gcc, cc: gcc, cxx: g++ }
- { os: ubuntu-latest, compiler: clang, cc: clang, cxx: clang++ }
- { os: macos-latest, compiler: clang, cc: clang, cxx: clang++ }
name: ${{ matrix.os }} / ${{ matrix.compiler }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Configure
run: cmake --preset default
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
- name: Build
run: cmake --build --preset default