updated badges in Readme #516
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dobby Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
# For CI, build all optional plugins. Newly developed plugins should be added to this list | |
optional_plugins: "-DPLUGIN_TESTPLUGIN=ON -DPLUGIN_GPU=ON -DPLUGIN_LOCALTIME=ON -DPLUGIN_RTSCHEDULING=ON -DPLUGIN_HTTPPROXY=ON -DPLUGIN_APPSERVICES=ON -DPLUGIN_IONMEMORY=ON -DPLUGIN_DEVICEMAPPER=ON -DPLUGIN_OOMCRASH=ON" | |
strategy: | |
fail-fast: false | |
matrix: | |
# The matrix will try all possible combinations of the below arrays | |
# If adding a new cmake option, include both the ON and OFF version to ensure the | |
# matrix runs both versions | |
build_type: ["Release", "Debug"] | |
extra_flags: ["-DLEGACY_COMPONENTS=ON", "-DLEGACY_COMPONENTS=OFF", "-DUSE_SYSTEMD=ON", "-DUSE_SYSTEMD=OFF"] | |
name: Build in ${{ matrix.build_type }} Mode (${{ matrix.extra_flags }}) | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install-dependencies | |
run: | | |
sudo apt-get update -y -q | |
sudo apt-get install -q -y automake libtool autotools-dev software-properties-common build-essential cmake libsystemd-dev libctemplate-dev libjsoncpp-dev libdbus-1-dev libnl-3-dev libnl-route-3-dev libsystemd-dev libyajl-dev libcap-dev libboost-dev libgtest-dev | |
- name: build dobby | |
run: | | |
cd $GITHUB_WORKSPACE | |
mkdir build | |
cd build | |
cmake -DRDK_PLATFORM=DEV_VM -DCMAKE_INSTALL_PREFIX:PATH=/usr -DENABLE_DOBBYTEST=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ matrix.extra_flags }} ${{ env.optional_plugins }} .. | |
make -j $(nproc) | |
- name: run unit-tests | |
run: | | |
sudo $GITHUB_WORKSPACE/build/gtest/DobbyUtilsTest/DobbyUtilsTest |