Skip to content

Print mccode_config.json to the log, disable osx 11 (hangs at openmpi… #6

Print mccode_config.json to the log, disable osx 11 (hangs at openmpi…

Print mccode_config.json to the log, disable osx 11 (hangs at openmpi… #6

name: mcstas-basictest
on:
push:
schedule:
- cron: '30 23 * * 0' # 23:30 every Sunday
workflow_dispatch:
inputs:
manual-debugging:
type: boolean
description: Launch manual debugging tmate for inspection (automatic in case of errors)
default: false
jobs:
build:
strategy:
matrix:
include:
- { os: ubuntu-20.04, CC: gcc-10, CXX: g++-10, python: '3.8' }
- { os: ubuntu-22.04, CC: gcc, CXX: g++, python: '3.9' }
- { os: ubuntu-latest, CC: gcc, CXX: g++, python: '3.10' }
- { os: ubuntu-latest, CC: clang, CXX: clang++, python: '3.11' }
- { os: ubuntu-latest, CC: gcc-12, CXX: g++-12, python: '3.11' }
# - { os: macos-11, CC: clang, CXX: clang++, python: "3.10" }
- { os: macos-12, CC: clang, CXX: clang++, python: "3.11" }
# - { os: macos-13, CC: clang, CXX: clang++, python: "3.11" }
- { os: windows-latest, CC: gcc, CXX: g++, python: "3.11" }
- { os: windows-2019, CC: gcc, CXX: g++, python: "3.11" }
name: ${{ matrix.os }}.${{ matrix.CC }}.python-${{ matrix.python }}
runs-on: ${{ matrix.os }}
env:
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: src
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Setup Bison
id: setup-flex-bison
run: |
if [ "x$(uname)" == "xDarwin" ]; then brew install bison flex; fi
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ]; then choco install winflexbison3; fi
- name: Setup OpenMPI
id: setup-openmpi
run: |
if [ "x$(uname)" == "xLinux" ]; then sudo apt -y install libopenmpi-dev; fi
if [ "x$(uname)" == "xDarwin" ]; then brew install openmpi; fi
- name: Setup NeXus
id: setup-nexus
run: |
if [ "x$(uname)" == "xLinux" ]; then sudo apt -y install libnexus-dev; fi
- name: Check versions
id: version-checks
run: |
which python3
python3 --version
which cmake
cmake --version
#NB: bison and flex in path are actually too old, we will install the
# keg-only recipes for them later:
#bison --version
#flex --version
- name: Configure build and install mcstas
id: mcstas-install
run: |
if [ "x$(uname)" == "xDarwin" ]; then export SDKROOT=$(xcrun --sdk macosx --show-sdk-path); fi
set -e
set -u
set -x
mkdir build_mcstas
cd build_mcstas
export EXTRA_ARGS_FOR_CMAKE=""
if [ "x$(uname)" == "xDarwin" ]; then export EXTRA_ARGS_FOR_CMAKE="-DBISON_EXECUTABLE=/usr/local/opt/bison/bin/bison -DFLEX_EXECUTABLE=/usr/local/opt/flex/bin/flex"; fi
if [ "x$(uname)" == "xLinux" ]; then export EXTRA_ARGS_FOR_CMAKE="-DNEXUSLIB=/usr/lib -DNEXUSINCLUDE=/usr/include/nexus"; fi
cmake \
-DCMAKE_INSTALL_PREFIX=../install_mcstas \
-S ../src \
-G "Unix Makefiles" \
-DMCVERSION="3.99.99" \
-DMCCODE_BUILD_CONDA_PKG=ON \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_MCSTAS=ON \
-DMCCODE_USE_LEGACY_DESTINATIONS=OFF \
-DBUILD_TOOLS=ON \
-DENABLE_COMPONENTS=ON \
-DENSURE_MCPL=ON \
-DENSURE_NCRYSTAL=OFF \
-DENABLE_CIF2HKL=OFF \
-DENABLE_NEUTRONICS=OFF \
${EXTRA_ARGS_FOR_CMAKE}
cmake --build . --config Release
cmake --build . --target install --config Release
export MCSTAS_EXECUTABLE="mcstas"
export MCRUN_EXECUTABLE="mcrun"
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ];
then
export MCSTAS_EXECUTABLE="mcstas.exe"
export MCRUN_EXECUTABLE="mcrun.bat"
fi
test -f "../install_mcstas/bin/${MCSTAS_EXECUTABLE}"
test -f "../install_mcstas/bin/${MCRUN_EXECUTABLE}"
test -f "../install_mcstas/share/mcstas/tools/Python/mccodelib/__init__.py"
test -d "../install_mcstas/share/mcstas/resources/data"
echo *******************************************************************************
echo Resulting mccode_config.json:
echo *******************************************************************************
cat ../install_mcstas/share/mcstas/tools/Python/mccodelib/mccode_config.json
echo *******************************************************************************
- name: Pip install various
id: pip-install
run: |
set -e
set -u
set -x
python3 -mpip install PyYAML ply McStasscript
if [ "x$(uname | cut -f1 -d_)" != "xMINGW64" ];
then
python3 -mpip install ncrystal
fi
- name: Launch basic test instrument
id: h8-tests
# Status: Works on Windows + Unixes
run: |
set -e
set -u
set -x
export MCSTAS_EXECUTABLE="mcstas"
export MCSTAS_PYGEN_EXECUTABLE="mcstas-pygen"
export MCRUN_EXECUTABLE="mcrun"
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ];
then
export MCSTAS_EXECUTABLE="mcstas.exe"
export MCSTAS_PYGEN_EXECUTABLE="mcstas-pygen.exe"
export MCRUN_EXECUTABLE="mcrun.bat"
fi
test -f ./install_mcstas/bin/${MCSTAS_EXECUTABLE}
./install_mcstas/bin/${MCSTAS_EXECUTABLE} --version
mkdir run_BNL_H8 && cd run_BNL_H8
cp ../install_mcstas/share/mcstas/resources/examples/BNL_H8.instr .
#Not a final solution!!!:
if [ "x$(uname)" == "xDarwin" ]; then export MCSTAS_CC_OVERRIDE=/usr/bin/clang; fi
../install_mcstas/bin/${MCRUN_EXECUTABLE} BNL_H8.instr lambda=2.36
../install_mcstas/bin/${MCSTAS_PYGEN_EXECUTABLE} BNL_H8.instr
if [ "x$(uname | cut -f1 -d_)" != "xMINGW64" ];
then
../install_mcstas/bin/${MCRUN_EXECUTABLE} -c --mpi=2 BNL_H8.instr lambda=2.36
fi
#python3 BNL_H8_generated.py
- name: Launch MCPL test instrument
id: mcpl-test
# Status: Works on Unixes ("wrapper batches missing for Windows")
run: |
set -e
set -u
set -x
export MCSTAS_EXECUTABLE="mcstas"
export MCRUN_EXECUTABLE="mcrun"
export PATH=${PATH}:${PWD}/install_mcstas/bin/:${PWD}/install_mcstas/mcstas/3.99.99/bin/
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ];
then
export MCSTAS_EXECUTABLE="mcstas.exe"
export MCRUN_EXECUTABLE="mcrun.bat"
fi
test -f ./install_mcstas/bin/${MCSTAS_EXECUTABLE}
./install_mcstas/bin/${MCSTAS_EXECUTABLE} --version
mkdir run_ESS_BEER_MCPL && cd run_ESS_BEER_MCPL
cp ../install_mcstas/share/mcstas/resources/examples/ESS_BEER_MCPL.instr .
#Not a final solution!!!:
if [ "x$(uname)" == "xDarwin" ]; then export MCSTAS_CC_OVERRIDE=/usr/bin/clang; fi
if [ "x$(uname | cut -f1 -d_)" != "xMINGW64" ];
then
../install_mcstas/bin/${MCRUN_EXECUTABLE} ESS_BEER_MCPL.instr repetition=50
../install_mcstas/bin/${MCRUN_EXECUTABLE} -c --mpi=2 ESS_BEER_MCPL.instr repetition=50
fi
- name: Launch NCrystal test instrument
id: ncrystal-test
# Status: Works on Unixes ("ncrystal missing for Windows")
run: |
set -e
set -u
set -x
export MCSTAS_EXECUTABLE="mcstas"
export MCRUN_EXECUTABLE="mcrun"
export PATH=${PATH}:${PWD}/install_mcstas/bin/:${PWD}/install_mcstas/mcstas/3.99.99/bin/
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ];
then
export MCSTAS_EXECUTABLE="mcstas.exe"
export MCRUN_EXECUTABLE="mcrun.bat"
fi
test -f ./install_mcstas/bin/${MCSTAS_EXECUTABLE}
./install_mcstas/bin/${MCSTAS_EXECUTABLE} --version
mkdir run_NCrystal_example && cd run_NCrystal_example
cp ../install_mcstas/share/mcstas/resources/examples/NCrystal_example.instr .
#Not a final solution!!!:
if [ "x$(uname)" == "xDarwin" ]; then export MCSTAS_CC_OVERRIDE=/usr/bin/clang; fi
if [ "x$(uname | cut -f1 -d_)" != "xMINGW64" ];
then
../install_mcstas/bin/${MCRUN_EXECUTABLE} NCrystal_example.instr sample_cfg="Y2O3_sg206_Yttrium_Oxide.ncmat\;density=0.6x"
../install_mcstas/bin/${MCRUN_EXECUTABLE} -c --mpi=2 NCrystal_example.instr sample_cfg="Y2O3_sg206_Yttrium_Oxide.ncmat\;density=0.6x"
fi
- name: Launch NeXus test instrument
id: nexus-test
# Status: Works on Linux (NeXus packages w/napi.h missing on mac+Windows)
run: |
set -e
set -u
set -x
export MCSTAS_EXECUTABLE="mcstas"
export MCRUN_EXECUTABLE="mcrun"
export PATH=${PATH}:${PWD}/install_mcstas/bin/:${PWD}/install_mcstas/mcstas/3.99.99/bin/
if [ "x$(uname | cut -f1 -d_)" == "xMINGW64" ];
then
export MCSTAS_EXECUTABLE="mcstas.exe"
export MCRUN_EXECUTABLE="mcrun.bat"
fi
test -f ./install_mcstas/bin/${MCSTAS_EXECUTABLE}
./install_mcstas/bin/${MCSTAS_EXECUTABLE} --version
mkdir run_templateSANS_Mantid && cd run_templateSANS_Mantid
cp ../install_mcstas/share/mcstas/resources/examples/templateSANS_Mantid.instr .
#Not a final solution!!!:
if [ "x$(uname)" == "xDarwin" ]; then export MCSTAS_CC_OVERRIDE=/usr/bin/clang; fi
if [ "x$(uname)" == "xLinux" ]; then
../install_mcstas/bin/${MCRUN_EXECUTABLE} --format=NeXus --IDF templateSANS_Mantid.instr lambda=6
../install_mcstas/bin/${MCRUN_EXECUTABLE} -c --mpi=2 --format=NeXus --IDF templateSANS_Mantid.instr lambda=6
fi
- name: 'Tar output files'
id: tar-package
run: |
set -e
set -u
set -x
export TESTOS=`uname | cut -f1 -d_` && export TESTREL=`uname -r` && tar cvfz mcstas-${TESTOS}_${TESTREL}_output.tgz run_*
- name: 'Upload Artifact'
id: tar-upload
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: "*_output.tgz"
- name: Setup tmate session for manual debugging
uses: mxschmitt/action-tmate@v3
if: always() && (inputs.manual-debugging == true || steps.tar-package.outcome != 'success')
with:
limit-access-to-actor: true