Skip to content
Snippets Groups Projects
Commit f89e8a41 authored by Lars Bilke's avatar Lars Bilke
Browse files

[ci] Fixed build on eve frontends.

parent c3a67e59
No related branches found
No related tags found
No related merge requests found
......@@ -12,9 +12,12 @@
#pragma once
#include <boost/shared_ptr.hpp>
#include <filesystem>
#include <vector>
class XdmfArrayType;
namespace MeshLib::IO
{
/**
......
......@@ -20,6 +20,8 @@
#include "IntegrationPointWriter.h"
#include "MathLib/LinAlg/LinAlg.h"
#include "MeshLib/IO/VtkIO/VtuInterface.h"
#include "MeshLib/IO/XDMF/Xdmf3Writer.h"
#include "MeshLib/IO/XDMF/transformData.h"
#include "NumLib/DOF/LocalToGlobalIndexMap.h"
/// Copies the ogs_version string containing the release number and the git
......@@ -27,7 +29,8 @@
static void addOgsVersion(MeshLib::Mesh& mesh)
{
auto& ogs_version_field = *MeshLib::getOrCreateMeshProperty<char>(
mesh, GitInfoLib::GitInfo::OGS_VERSION, MeshLib::MeshItemType::IntegrationPoint, 1);
mesh, GitInfoLib::GitInfo::OGS_VERSION,
MeshLib::MeshItemType::IntegrationPoint, 1);
ogs_version_field.assign(GitInfoLib::GitInfo::ogs_version.begin(),
GitInfoLib::GitInfo::ogs_version.end());
......@@ -267,8 +270,8 @@ void makeOutput(std::string const& file_name, MeshLib::Mesh const& mesh,
fegetenv(&fe_env);
fesetenv(FE_DFL_ENV); // Set default environment effectively disabling
// exceptions.
#endif //_WIN32
#endif //__APPLE__
#endif //_WIN32
#endif //__APPLE__
switch (file_type)
{
......
......@@ -17,6 +17,7 @@ module load git-lfs/2.7.1
module load boost/1.67.0-1
module load eigen/3.3.4-1-cmake
module load vtk/8.2.0/foss2019b/serial
module load HDF5/1.10.5-nompi
# Tools
module load ccache/3.3.3
......@@ -6,5 +6,6 @@ fi
source $DIR/cli.sh
module load vtk/8.2.0/foss2019b/openmpi
module load HDF5/1.10.5
export CC=mpicc
export CXX=mpic++
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment