Skip to content
Snippets Groups Projects
Unverified Commit df3e3085 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2524 from bilke/eve-deploy-fix

Eve deploy fix
parents 65ffef7b ec151d49
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ pipeline { ...@@ -28,7 +28,7 @@ pipeline {
agent { label "master"} agent { label "master"}
steps { steps {
sh "git config core.whitespace -blank-at-eof" sh "git config core.whitespace -blank-at-eof"
sh "git diff --check `git merge-base origin/master HEAD` HEAD -- . ':!*.md' ':!*.pandoc' ':!*.asc'" sh "git diff --check `git merge-base origin/master HEAD` HEAD -- . ':!*.md' ':!*.pandoc' ':!*.asc' ':!*.dat'"
dir('scripts/jenkins') { stash(name: 'known_hosts', includes: 'known_hosts') } dir('scripts/jenkins') { stash(name: 'known_hosts', includes: 'known_hosts') }
ciSkip action: 'check' // Check for [ci skip] or [web] commit message. ciSkip action: 'check' // Check for [ci skip] or [web] commit message.
......
...@@ -85,8 +85,8 @@ if(COMPILER_IS_GCC OR COMPILER_IS_CLANG OR COMPILER_IS_INTEL) ...@@ -85,8 +85,8 @@ if(COMPILER_IS_GCC OR COMPILER_IS_CLANG OR COMPILER_IS_INTEL)
endif() endif()
if(COMPILER_IS_GCC) if(COMPILER_IS_GCC)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.2") if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "7.3")
message(FATAL_ERROR "GCC minimum required version is 6.2! You are \ message(FATAL_ERROR "GCC minimum required version is 7.3! You are \
using ${CMAKE_CXX_COMPILER_VERSION}.") using ${CMAKE_CXX_COMPILER_VERSION}.")
endif() endif()
add_compile_options(-fext-numeric-literals) add_compile_options(-fext-numeric-literals)
......
...@@ -44,7 +44,7 @@ find_program(PIP pip) ...@@ -44,7 +44,7 @@ find_program(PIP pip)
find_program(PANDOC_CITEPROC pandoc-citeproc) find_program(PANDOC_CITEPROC pandoc-citeproc)
find_program(MODULE_CMD modulecmd find_program(MODULE_CMD modulecmd
PATHS /usr/local/modules/3.3.4-1/Modules/3.3.4/bin) PATHS /usr/local/modules/3.2.10-1/Modules/3.2.10/bin)
###################### ######################
### Find libraries ### ### Find libraries ###
......
...@@ -22,6 +22,10 @@ if(MODULE_CMD) ...@@ -22,6 +22,10 @@ if(MODULE_CMD)
install(FILES ${PROJECT_BINARY_DIR}/module.lua DESTINATION ${MODULE_DIR} install(FILES ${PROJECT_BINARY_DIR}/module.lua DESTINATION ${MODULE_DIR}
RENAME ${MODULE_NAME}.lua) RENAME ${MODULE_NAME}.lua)
endif() endif()
else()
if("${HOSTNAME}" MATCHES "frontend.*")
message(FATAL_ERROR "MODULE_CMD not found but required on eve frontends!")
endif()
endif() endif()
set(README_PLATFORM_INSTRUCTIONS set(README_PLATFORM_INSTRUCTIONS
......
if [ ! -f ~/.easybuild-yes ]; then
echo "ERROR: Easybuild modules not enabled but required!\n"
echo "Run 'touch ~/.easybuild-yes' and re-login to enable."
echo "For more details see:\n https://www.opengeosys.org/docs/devguide/advanced/working-on-eve"
return 1
fi
module use /global/apps/modulefiles module use /global/apps/modulefiles
module load cmake module load cmake
......
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