Thanks to visit codestin.com
Credit goes to github.com

Skip to content

mdpp_sampling: add comments including the known sample source constants #62

mdpp_sampling: add comments including the known sample source constants

mdpp_sampling: add comments including the known sample source constants #62

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: submodules
run: git submodule update --init
- name: apt-get
run: sudo apt-get update &&
sudo apt-get install -y
build-essential cmake libboost-all-dev
qtbase5-dev-tools libquazip5-dev libqwt-qt5-dev
zlib1g-dev libusb-dev libqt5websockets5-dev ninja-build
libgraphviz-dev libqt5svg5-dev
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- name: build
run: cmake --build build -j 4
- name: test
run: cd build && ctest
- name: install
run: cd build && sudo make install
build-debian-bookworm:
runs-on: ubuntu-latest
container:
image: debian:bookworm
steps:
- uses: actions/checkout@v1
- name: prepare
run: apt-get update &&
apt-get install -y
git make gcc g++
- name: submodules
run: git config --global --add safe.directory '*' &&
git submodule update --init
- name: apt-get
run: apt-get update &&
apt-get install -y
build-essential cmake libboost-all-dev
qtbase5-dev-tools libquazip5-dev libqwt-qt5-dev
zlib1g-dev libusb-dev libqt5websockets5-dev ninja-build
libgraphviz-dev libqt5svg5-dev prometheus-cpp-dev
libzmq3-dev cppzmq-dev
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- name: build
run: cmake --build build -j 4
- name: test
run: cd build && ctest
- name: install
run: cd build && make install
build-debian-bullseye:
runs-on: ubuntu-latest
container:
image: debian:bullseye
steps:
- uses: actions/checkout@v1
- name: prepare
run: apt-get update &&
apt-get install -y
git make gcc g++
- name: submodules
run: git config --global --add safe.directory '*' &&
git submodule update --init
- name: apt-get
run: apt-get update &&
apt-get install -y
bash build-essential git cmake ninja-build ca-certificates
qtbase5-dev qtbase5-dev-tools libqt5websockets5-dev libqt5opengl5-dev libqt5svg5-dev
libqt5serialport5-dev libqwt-qt5-dev libquazip5-dev libusb-dev zlib1g-dev libgraphviz-dev
libboost-dev sphinx-common sphinx-rtd-theme-common python3-sphinx python3-sphinxcontrib.qthelp
texlive-latex-base texlive-latex-extra texlive-latex-recommended latexmk texlive-fonts-recommended
libzmq3-dev
- name: configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- name: build
run: cmake --build build -j 4
- name: test
run: cd build && ctest
- name: install
run: cd build && make install