Continue working on test action #16
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: Test | |
on: | |
workflow_dispatch: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
build: | |
strategy: | |
matrix: | |
external-gtest: [ YES, NO ] | |
os: [ ubuntu-latest, ubuntu-22.04 ] | |
runs-on: ${{ matrix.os }} | |
name: Build with external_gtest=${{ matrix.external-gtest }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: install deps | |
run: | | |
sudo apt update && sudo apt-get install -y cmake libgtest-dev | |
################################# | |
# Install Lotman & dependencies # | |
################################# | |
# nlohmann/json | |
echo "Installing nlohmann/json" | |
git clone https://github.com/nlohmann/json.git && \ | |
cd json && mkdir build && \ | |
cd build && cmake -DCMAKE_INSTALL_PREFIX=$HOME/install .. && \ | |
make -j`nproc` install | |
# json schema validator | |
echo "Installing json-schema-validator" | |
git clone https://github.com/pboettch/json-schema-validator.git && \ | |
cd json-schema-validator && mkdir build && \ | |
cd build && cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=$HOME/install .. && \ | |
make -j`nproc` install | |
# Lotman | |
echo "Installing Lotman" | |
git clone https://github.com/PelicanPlatform/lotman.git && \ | |
cd lotman && \ | |
git checkout v0.0.3 && \ | |
mkdir build && cd build && \ | |
cmake -DCMAKE_INSTALL_PREFIX=$HOME/install \ | |
-DCMAKE_PREFIX_PATH=$HOME/install \ | |
-DCMAKE_CXX_FLAGS="-I$HOME/install/include -L$HOME/install/lib -L$HOME/install/lib64" \ | |
.. && \ | |
make -j`nproc` install | |
##################################### | |
# Install Custom XRootD (temporary) # | |
##################################### | |
echo "Installing Alja's XRootD" | |
git clone https://github.com/alja/xrootd.git && \ | |
cd xrootd && \ | |
git checkout purge-main-rb1 && \ | |
mkdir build && cd build && \ | |
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$HOME/install -DCMAKE_PREFIX_PATH=$HOME/install -DCMAKE_CXX_FLAGS="-I$HOME/install/include" .. && \ | |
make -j`nproc` install | |
- name: Create Build Environment | |
# Some projects don't allow in-source building, so create a separate build directory | |
# We'll use this as our working directory for all subsequent commands | |
run: cmake -E make_directory ${{runner.workspace}}/build | |
- name: Configure CMake | |
# Use a bash shell so we can use the same syntax for environment variable | |
# access regardless of the host operating system | |
shell: bash | |
working-directory: ${{runner.workspace}}/build | |
run: | | |
export LD_LIBRARY_PATH="$HOME/install/lib:$HOME/install/lib64:$LD_LIBRARY_PATH" | |
export CMAKE_PREFIX_PATH="$HOME/install:$CMAKE_PREFIX_PATH" | |
cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DXROOTD_PLUGINS_BUILD_UNITTESTS=ON -DCMAKE_CXX_FLAGS="-I$HOME/install/include -L$HOME/install/lib -L$HOME/install/lib64" -DXROOTD_PLUGINS_EXTERNAL_GTEST=${{ matrix.external-gtest }} | |
- name: Build | |
working-directory: ${{runner.workspace}}/build | |
shell: bash | |
# Execute the build. You can specify a specific target with "--target <NAME>" | |
run: cmake --build . --config $BUILD_TYPE | |
- name: Unit Tests | |
working-directory: ${{runner.workspace}}/build | |
shell: bash | |
# Execute tests defined by the CMake configuration. | |
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
run: ctest -C $BUILD_TYPE --verbose |