mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-22 01:52:24 +00:00
Merge branch 'main' of https://github.com/nqrduck/LimeDriver
This commit is contained in:
commit
39de10eae6
1 changed files with 28 additions and 0 deletions
28
.github/workflows/c-cpp.yml
vendored
Normal file
28
.github/workflows/c-cpp.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: C/C++ CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
# Install LimeSuite
|
||||
- name: Install LimeSuite dependencies
|
||||
run: sudo apt-get update -y && sudo apt-get install -y limesuite liblimesuite-dev
|
||||
|
||||
# Install H5c++
|
||||
- name: Install HDF5 dependencies
|
||||
run: sudo apt-get update -y && sudo apt-get install -y libhdf5-dev
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
Loading…
Reference in a new issue