mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-22 01:52:24 +00:00
34 lines
771 B
YAML
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
|