Change collision conventions #550
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: WallGo tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# If true, Github will cancel all other jobs in the matrix if any of them fails | |
fail-fast: false | |
matrix: | |
# os: [ubuntu-latest, macos-latest] | |
os: [ubuntu-latest] | |
build_type: [Release] | |
c_compiler: [gcc, clang] | |
python-version: ["3.11"] | |
include: | |
- os: ubuntu-latest | |
c_compiler: gcc | |
cpp_compiler: g++ | |
# - os: macos-latest | |
# c_compiler: clang | |
# cpp_compiler: clang++ | |
exclude: | |
- os: ubuntu-latest | |
c_compiler: clang | |
# - os: macos-latest | |
# c_compiler: gcc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set reusable strings | |
# Define useful strings like the path to build dir | |
id: strings | |
shell: bash | |
run: | | |
echo "collision-root-dir=${{ github.workspace }}/Collision" >> "$GITHUB_OUTPUT" | |
echo "collision-build-dir=${{ github.workspace }}/Collision/build" >> "$GITHUB_OUTPUT" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install WallGo Python package | |
run: pip install .[collisions,tests] | |
- name: Install os-dependent Collision requirements | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get update | |
sudo apt-get install libgsl-dev libhdf5-dev | |
elif [ "$RUNNER_OS" == "macOS" ]; then | |
brew remove azure-cli | |
brew update | |
brew install qt@5 xz ccache zstd webp | |
brew install gsl hdf5 muparser | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
- name: Clone muparser repository | |
uses: actions/checkout@v4 | |
with: | |
repository: beltoforion/muparser | |
path: muparser | |
- name: Install muparser | |
# Will install muparser without OpenMP support, our program doesn't need it here. ldconfig seems to be required for linux builds | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
cd muparser && cmake -DENABLE_OPENMP=OFF . && make && sudo make install && cd .. | |
sudo ldconfig | |
fi | |
- name: Configure CMake for Collision | |
run: > | |
cmake -B ${{ steps.strings.outputs.collision-build-dir }} | |
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
-S ${{ steps.strings.outputs.collision-root-dir }} | |
- name: Build and install Collision | |
run: | | |
cmake --build ${{ steps.strings.outputs.collision-build-dir }} --config ${{ matrix.build_type }} | |
cmake --install ${{ steps.strings.outputs.collision-build-dir }} | |
- name: Run Collision QCD examples | |
run: cd ${{ steps.strings.outputs.collision-root-dir }}/examples && ./bin/QCD | |
- name: Test with pytest | |
# Let's have -s flag for showing prints etc, can be useful for debugging | |
run: cd ${{ github.workspace }} && pytest -vs |