Skip to content

Build TRNG4 with GCC on Ubuntu #34

Build TRNG4 with GCC on Ubuntu

Build TRNG4 with GCC on Ubuntu #34

name: build-ubuntu-gcc
run-name: Build TRNG4 with GCC on Ubuntu
on: [ push, workflow_dispatch ]
jobs:
compile-trng4:
strategy:
matrix:
build-type: [ Debug, Release ]
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install build dependencies
run: |
sudo apt update
sudo apt install g++ cmake ninja-build libtbb-dev libopenmpi-dev
g++ --version
- name: Build TRNG4
run: |
mkdir build
cd build
cmake -G Ninja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_INSTALL_PREFIX="$HOME/trng4" -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} ..
cmake --build . -j
- name: Test TRNG4
run: |
cd build
ctest --output-on-failure
- name: Install TRNG4
run: |
cd build
cmake --build . --target install
- name: Pack TRNG4
run: |
cd build
cmake --build . --target package
- name: Test TRNG4
run: |
cd build
ctest --output-on-failure
- run: echo "This job's status is ${{ job.status }}."