limedriver/.github/workflows/c-cpp.yml
2024-02-10 15:49:57 +01:00

34 lines
771 B
YAML

name: C/C++ CI
on:
push:
branches-ignore: [ ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up build requirements
run: sudo apt-get update -y && sudo apt-get install -y cmake g++
- name: Install LimeSuite dependencies
run: sudo apt-get update -y && sudo apt-get install -y limesuite liblimesuite-dev
- name: Install HDF5 dependencies
run: sudo apt-get update -y && sudo apt-get install -y libhdf5-dev
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: cmake -S . -B build && cmake --build build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build
path: build