diff --git a/.editorconfig b/.editorconfig
index e4d0fdd261eafeffd0d48b7b84cc1c7cbd644aa3..dbd6ff49e76a040d5849d19e78fc711aba0a42b8 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -10,3 +10,6 @@ trim_trailing_whitespace = false
 
 [*.{json,yml,toml}]
 indent_size = 2
+
+[Jenkinsfile]
+indent_size = 2
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e12fdbc05fc03012bbbbfe4ffddd327b8eb80e85..917906250dd0e25cb2c3cc23fe85835fe93564ba 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -235,11 +235,6 @@ if (OGS_FATAL_ABORT)
     add_definitions(-DOGS_FATAL_ABORT)
 endif()
 
-if(OGS_BUILD_TESTS)
-    set(Data_SOURCE_DIR ${PROJECT_SOURCE_DIR}/Tests/lfs-data CACHE INTERNAL "")
-    set(Data_BINARY_DIR ${PROJECT_BINARY_DIR}/Tests/lfs-data CACHE INTERNAL "")
-endif()
-
 # Logging level
 add_definitions(-DLOGOG_LEVEL=${OGS_LOG_LEVEL})
 
diff --git a/Jenkinsfile b/Jenkinsfile
index 02bd23b76af7b629debdf3638b9e7ae6367c6a56..98461e546eb262f5e70bcfcdfa65273c5a637a8d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,96 +1,391 @@
 #!/usr/bin/env groovy
-@Library('jenkins-pipeline@1.0.8') _
+@Library('jenkins-pipeline@1.0.9') _
 
-def builders = [:]
-def helper = new ogs.helper()
-def tag = ""
-
-timestamps {
+pipeline {
+  agent none
+  options {
+    ansiColor('xterm')
+    timestamps()
+  }
+  stages {
+    stage('Build') {
+      parallel {
+        // ************************** Docker ***********************************
+        stage('Docker') {
+          agent {
+            docker {
+              image 'ogs6/gcc-gui:latest'
+              label 'docker'
+              args '-v /home/jenkins/.ccache:/usr/src/.ccache'
+              alwaysPull true
+            }
+          }
+          environment {
+            CONTENTFUL_ACCESS_TOKEN = credentials('CONTENTFUL_ACCESS_TOKEN')
+            CONTENTFUL_OGS_SPACE_ID = credentials('CONTENTFUL_OGS_SPACE_ID')
+          }
+          steps {
+            // Install web dependencies
+            script {
+              sh("""
+                cd web
+                yarn --ignore-engines --non-interactive
+                node node_modules/node-sass/scripts/install.js
+                npm rebuild node-sass
+                sudo -H pip install -r requirements.txt
+                """.stripIndent())
 
-builders['gcc'] = {
-    node('docker') {
-        dir('ogs') {
-            checkout scm
-            tag = helper.getTag()
+              configure { cmakeOptions =
+                '-DOGS_CPU_ARCHITECTURE=generic ' +
+                '-DOGS_WEB_BASE_URL=$JOB_URL"Web/" ' // TODO: or '-DOGS_WEB_BASE_URL=https://dev.opengeosys.org'
+              }
+              build { }
+              build { target="tests" }
+              build { target="ctest" }
+              build { target="web" }
+              build { target="doc" }
+            }
+          }
+          post {
+            always {
+              publishReports { }
+            }
+            failure {
+                dir('build') { deleteDir() }
+            }
+            success {
+                dir('web/public') { stash(name: 'web') }
+                dir('build/docs') { stash(name: 'doxygen') }
+                script {
+                  publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: true,
+                    keepAll: true, reportDir: 'build/docs', reportFiles: 'index.html',
+                    reportName: 'Doxygen'])
+                  publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: true,
+                    keepAll: true, reportDir: 'web/public', reportFiles: 'index.html',
+                    reportName: 'Web'])
+                  step([$class: 'WarningsPublisher', canResolveRelativePaths: false,
+                    messagesPattern: """
+                      .*DOT_GRAPH_MAX_NODES.
+                      .*potential recursive class relation.*""",
+                    parserConfigurations: [[parserName: 'Doxygen', pattern:
+                    'build/DoxygenWarnings.log']], unstableTotalAll: '0'])
+                }
+                dir('build') { deleteDir() }
+            }
+          }
         }
-        load 'ogs/scripts/jenkins/gcc.groovy'
-    }
-}
-
-builders['gcc-conan'] = {
-    node('docker') {
-        dir('ogs') { checkout scm }
-        load 'ogs/scripts/jenkins/gcc-conan.groovy'
-    }
-}
-
-builders['gcc-dynamic'] = {
-    node('envinf1') {
-        dir('ogs') { checkout scm }
-        load 'ogs/scripts/jenkins/gcc-dynamic.groovy'
-    }
-}
-
-builders['msvc'] = {
-    node('win && conan') {
-        dir('ogs') { checkout scm }
-        load 'ogs/scripts/jenkins/msvc.groovy'
-    }
-}
-
-// builders['mac'] = {
-    // node('mac') {
-        // dir('ogs') { checkout scm }
-        // load 'ogs/scripts/jenkins/mac.groovy'
-    // }
-// }
-
-if (helper.isOriginMaster(this)) {
-    builders['coverage'] = {
-        node('docker') {
-            dir('ogs') { checkout scm }
-            load 'ogs/scripts/jenkins/coverage.groovy'
+        // ************************ Docker-Conan *******************************
+        stage('Docker-Conan') {
+          agent {
+            docker {
+              image 'ogs6/gcc-conan:latest'
+              label 'docker'
+              args '-v /home/jenkins/.ccache:/usr/src/.ccache'
+              alwaysPull true
+            }
+          }
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_USE_CONAN=ON ' +
+                  '-DOGS_CONAN_BUILD=never ' +
+                  '-DOGS_CPU_ARCHITECTURE=generic ' +
+                  '-DOGS_PACKAGE_DEPENDENCIES=ON '
+              }
+              build { }
+              build { target="tests" }
+              build { target="ctest" }
+              configure {
+                cmakeOptions =
+                  '-DOGS_BUILD_CLI=OFF ' +
+                  '-DOGS_USE_PCH=OFF ' +     // see #1992
+                  '-DOGS_BUILD_GUI=ON ' +
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_TESTS=OFF ' +
+                  '-DOGS_BUILD_METIS=ON '
+                keepDir = true
+              }
+              build { }
+            }
+          }
+          post {
+            always {
+              publishReports { }
+            }
+            failure {
+                dir('build') { deleteDir() }
+            }
+            success {
+                archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt'
+                dir('build') { deleteDir() }
+            }
+          }
         }
+        // ************************** envinf1 **********************************
+        stage('Envinf1 (serial)') {
+          agent { label "envinf1"}
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_METIS=ON ' +
+                  '-DBUILD_SHARED_LIBS=ON '
+                env = 'envinf1/cli.sh'
+              }
+              build {
+                env = 'envinf1/cli.sh'
+                cmd_args = '-l 30'
+              }
+              build {
+                env = 'envinf1/cli.sh'
+                target = 'tests'
+              }
+              build {
+                env = 'envinf1/cli.sh'
+                target = 'ctest'
+              }
+            }
+          }
+          post {
+            always {
+              publishReports { }
+              dir('build') { deleteDir() }
+            }
+          }
+        }
+        stage('Envinf1 (parallel)') {
+          agent { label "envinf1"}
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_METIS=ON ' +
+                  '-DBUILD_SHARED_LIBS=ON ' +
+                  '-DOGS_USE_PETSC=ON '
+                env = 'envinf1/petsc.sh'
+                generator = 'Unix Makefiles'
+              }
+              build {
+                env = 'envinf1/petsc.sh'
+                cmd_args = '-l 30'
+              }
+              build {
+                env = 'envinf1/petsc.sh'
+                target = 'tests'
+              }
+              build {
+                env = 'envinf1/petsc.sh'
+                target = 'ctest'
+              }
+            }
+          }
+          post {
+            always {
+              publishReports { }
+              dir('build') { deleteDir() }
+            }
+          }
+        }
+        // ************************** Windows **********************************
+        stage('Win') {
+          agent {label 'win && conan' }
+          environment {
+            MSVC_NUMBER = '15'
+            MSVC_VERSION = '2017'
+          }
+          steps {
+            script {
+              // CLI
+              configure {
+                cmakeOptions =
+                  '-DOGS_USE_CONAN=ON ' +
+                  '-DOGS_DOWNLOAD_ADDITIONAL_CONTENT=ON '
+              }
+              build { }
+              build { target="tests" }
+              build { target="ctest" }
+              // GUI
+              configure {
+                cmakeOptions =
+                  '-DOGS_BUILD_GUI=ON ' +
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_TESTS=OFF ' +
+                  '-DOGS_BUILD_SWMM=ON ' +
+                  '-DOGS_BUILD_METIS=ON '
+                  keepDir = true
+              }
+              build { }
+            }
+          }
+          post {
+            always {
+              publishReports { }
+            }
+            failure {
+                dir('build') { deleteDir() }
+            }
+            success {
+                archiveArtifacts 'build/*.zip,build/conaninfo.txt'
+                dir('build') { deleteDir() }
+            }
+          }
+        }
+      } // end parallel
+    } // end stage Build
+    // *************************** Log Parser **********************************
+    stage('Log Parser') {
+      agent any
+      steps {
+        script {
+          checkout scm
+          step([$class: 'LogParserPublisher',
+              failBuildOnError: true,
+              projectRulePath: "scripts/jenkins/all-log-parser.rules",
+              showGraphs: true,
+              unstableOnWarning: false,
+              useProjectRule: true
+          ])
+        }
+      }
     }
-}
-
-try {
-    parallel builders
-}
-catch (err) {
-    currentBuild.result = 'FAILURE'
-    if (helper.isOriginMaster(this)) {
-        helper.notification(title: "${env.JOB_NAME} failed!", script: this,
-            msg: "Build failed", url: "${env.BUILD_URL}/flowGraphTable/")
-    }
-}
-
-node('master') {
-    checkout scm
-    step([$class: 'LogParserPublisher',
-        failBuildOnError: true,
-        projectRulePath: "scripts/jenkins/all-log-parser.rules",
-        showGraphs: true,
-        unstableOnWarning: false,
-        useProjectRule: true
-    ])
-}
-
-if (helper.isOriginMaster(this)) {
-    if (currentBuild.result == "SUCCESS" || currentBuild.result == "UNSTABLE") {
-        build job: 'OGS-6/clang-sanitizer', wait: false
-        if (tag != "") {
-            keepBuild()
-            currentBuild.displayName = tag
-            helper.notification(msg: "Marked build for ${tag}.", script: this)
+    stage('Master') {
+      when { environment name: 'JOB_NAME', value: 'OpenGeoSys/ogs/master' }
+      parallel {
+        // ************************* Deploy Web ********************************
+        stage('Deploy Web') {
+          steps {
+            dir('web') { unstash web }
+            dir('doxygen') { unstash doxygen }
+            script {
+              sshagent(credentials: ['www-data_jenkins']) {
+                sh 'rsync -a --delete --stats -e "ssh -o UserKnownHostsFile=' +
+                   'ogs/scripts/jenkins/known_hosts" . ' +
+                   'www-data@jenkins.opengeosys.org:/var/www/dev.opengeosys.org'
+                sh 'rsync -a --delete --stats -e "ssh -o UserKnownHostsFile=' +
+                   'ogs/scripts/jenkins/known_hosts" . ' +
+                   'www-data@jenkins.opengeosys.org:/var/www/doxygen.opengeosys.org'
+              }
+            }
+          }
+        }
+        // *********************** Deploy envinf1 ******************************
+        stage('Deploy envinf1') {
+          agent { label "envinf1"}
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_METIS=ON ' +
+                  '-DBUILD_SHARED_LIBS=ON ' +
+                  '-DCMAKE_INSTALL_PREFIX=${installPrefix}/standard ' +
+                  '-DOGS_MODULEFILE=${modulePrefix}/standard ' +
+                  '-DOGS_CPU_ARCHITECTURE=core-avx-i '
+                env = 'envinf1/cli.sh'
+              }
+              build {
+                env = 'envinf1/cli.sh'
+                target = 'install'
+                cmd_args = '-l 30'
+              }
+            }
+          }
+          post {
+            always {
+              dir('build') { deleteDir() }
+            }
+          }
+        }
+        // ******************** Deploy envinf1 PETSc ***************************
+        stage('Deploy envinf1 PETSc') {
+          agent { label "envinf1"}
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_USE_PETSC=ON ' +
+                  '-DOGS_BUILD_UTILS=ON ' +
+                  '-DOGS_BUILD_METIS=ON ' +
+                  '-DBUILD_SHARED_LIBS=ON ' +
+                  '-DCMAKE_INSTALL_PREFIX=${installPrefix}/petsc ' +
+                  '-DOGS_MODULEFILE=${modulePrefix}/petsc ' +
+                  '-DOGS_CPU_ARCHITECTURE=core-avx-i '
+                env = 'envinf1/petsc.sh'
+              }
+              build {
+                env = 'envinf1/petsc.sh'
+                target = 'install'
+                cmd_args = '-l 30'
+              }
+            }
+          }
+          post {
+            always {
+              dir('build') { deleteDir() }
+            }
+          }
+        }
+        // ************************** Sanitizer ********************************
+        stage('Sanitizer') {
+          agent {
+            docker {
+              image 'ogs6/clang-base:latest'
+              label 'docker'
+              args '-v /home/jenkins/.ccache:/usr/src/.ccache'
+              alwaysPull true
+            }
+          }
+          steps {
+            script {
+              configure {
+                cmakeOptions =
+                  '-DOGS_ADDRESS_SANITIZER=ON ' +
+                  '-DOGS_UNDEFINED_BEHAVIOR_SANITIZER=ON ' +
+                  '-DOGS_BUILD_UTILS=ON '
+              }
+              try {
+                build {
+                  target = 'test'
+                  cmd = 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
+                }
+              }
+              catch(err) { echo "Clang sanitizer for unit tests failed!" }
 
-            node('mac') {
-                dir('ogs') { checkout scm }
-                load 'ogs/scripts/jenkins/docset.groovy'
+              try {
+                build {
+                  target = 'ctest'
+                  cmd = 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
+                }
+              }
+              catch(err) { echo "Clang sanitizer for end-to-end tests failed!" }
+            }
+          }
+          post {
+            always {
+              dir('build') { deleteDir() }
             }
+          }
         }
-    }
+        // *************************** Post ************************************
+        stage('Post') {
+          agent any
+          steps {
+            script {
+              def helper = new ogs.helper()
+              checkout scm
+              def tag = helper.getTag()
+              if (tag != "") {
+                keepBuild()
+                currentBuild.displayName = tag
+                helper.notification(msg: "Marked build for ${tag}.", script: this)
+              }
+            }
+          }
+        }
+      } // end parallel
+    } // end stage master
+  }
 }
-
-
-} // end timestamps
diff --git a/Tests/NumLib/TestODEInt.cpp b/Tests/NumLib/TestODEInt.cpp
index 35d420776d4e0a769ceca16fd0ad6619ebcf8802..6286d3da3b984f3f1e1aafe31e1c5e87aba1ea00 100644
--- a/Tests/NumLib/TestODEInt.cpp
+++ b/Tests/NumLib/TestODEInt.cpp
@@ -279,7 +279,12 @@ public:
 
 TYPED_TEST_CASE(NumLibODEIntTyped, TestCases);
 
+// Temporarily disabled for PETSc issue #1989
+#ifndef USE_PETSC
 TYPED_TEST(NumLibODEIntTyped, T1)
+#else
+TYPED_TEST(NumLibODEIntTyped, DISABLED_T1)
+#endif
 {
     TestFixture::test();
 }
diff --git a/scripts/cmake/ConanSetup.cmake b/scripts/cmake/ConanSetup.cmake
index c25a6c86bac950ccc2767cbeb2f60f5970455b1a..341122940870f83abc01d034d0f3fd28935788c5 100644
--- a/scripts/cmake/ConanSetup.cmake
+++ b/scripts/cmake/ConanSetup.cmake
@@ -80,12 +80,12 @@ endif()
 
 # Add conan-community remote
 if("${CONAN_REMOTES}" MATCHES ".*conan-community:.*")
-    execute_process(COMMAND ${CONAN_CMD} remote update -i 2 conan-community
+    execute_process(COMMAND ${CONAN_CMD} remote update -i 1 conan-community
         https://api.bintray.com/conan/conan-community/conan)
 else()
     message(STATUS "Conan adding community remote repositoy \
         (https://api.bintray.com/conan/conan-community/conan)")
-    execute_process(COMMAND ${CONAN_CMD} remote add -i 2 conan-community
+    execute_process(COMMAND ${CONAN_CMD} remote add -i 1 conan-community
         https://api.bintray.com/conan/conan-community/conan)
 endif()
 
diff --git a/scripts/cmake/ProjectSetup.cmake b/scripts/cmake/ProjectSetup.cmake
index 3774a068f1900fe470ab104b72bbb9fdafaaac93..8d105a8d3f02a737c44036c770cfeb9063e6b14a 100644
--- a/scripts/cmake/ProjectSetup.cmake
+++ b/scripts/cmake/ProjectSetup.cmake
@@ -18,6 +18,9 @@ if(USE_CONAN AND MSVC)
     endforeach(OUTPUTCONFIG CMAKE_CONFIGURATION_TYPES)
 endif()
 
+set(Data_SOURCE_DIR ${PROJECT_SOURCE_DIR}/Tests/lfs-data CACHE INTERNAL "")
+set(Data_BINARY_DIR ${PROJECT_BINARY_DIR}/Tests/lfs-data CACHE INTERNAL "")
+
 # Enable Visual Studio project folder grouping
 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
 
diff --git a/scripts/env/envinf1/cli.sh b/scripts/env/envinf1/cli.sh
index 82b8c42076ad6020117c90932c4ac92f56bff4c9..3961859893b8654580dd8ed0a8aa457bf763703e 100644
--- a/scripts/env/envinf1/cli.sh
+++ b/scripts/env/envinf1/cli.sh
@@ -3,6 +3,7 @@ export MODULEPATH=$MODULEPATH:/global/apps/modulefiles
 
 module load cmake/3.1.3-1
 module load gcc/6.2.0-1
+module load ninja/1.8.2
 module load git/2.3.2-1
 
 # Libraries
diff --git a/scripts/jenkins/clang.groovy b/scripts/jenkins/clang.groovy
deleted file mode 100644
index fbf9d9f205ff5629622d62f4e9e2ff283af94afb..0000000000000000000000000000000000000000
--- a/scripts/jenkins/clang.groovy
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/env groovy
-
-node('docker') {
-    def defaultDockerArgs = '-v /home/jenkins/.ccache:/usr/src/.ccache'
-    def defaultCMakeOptions =
-        '-DOGS_ADDRESS_SANITIZER=ON ' +
-        '-DOGS_UNDEFINED_BEHAVIOR_SANITIZER=ON ' +
-        '-DOGS_BUILD_UTILS=ON'
-
-    def configure = new ogs.configure()
-    def build = new ogs.build()
-    def post = new ogs.post()
-    def helper = new ogs.helper()
-
-    stage('Checkout (Clang)') {
-        dir('ogs') { checkout scm }
-    }
-
-    def image = docker.image('ogs6/clang-base:latest')
-    image.pull()
-    image.inside(defaultDockerArgs) {
-        stage('Configure (Clang)') {
-            configure.linux 'build', "${defaultCMakeOptions}"
-        }
-        try {
-            stage('Unit tests (Clang)') {
-                build.linux 'build', 'tests', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
-            }
-        }
-        catch(err) { echo "Clang sanitizer for unit tests failed!" }
-
-        try {
-            stage('End-to-end tests (Clang)') {
-                build.linux 'build', 'ctest', 'UBSAN_OPTIONS=print_stacktrace=1 make -j $(nproc)'
-            }
-        }
-        catch(err) { echo "Clang sanitizer for end-to-end tests failed!" }
-    }
-
-    stage('Post (Clang)') {
-        post.publishTestReports('build/Testing/**/*.xml','build/Tests/testrunner.xml'
-        post.cleanup()
-    }
-}
diff --git a/scripts/jenkins/deploy-post.groovy b/scripts/jenkins/deploy-post.groovy
deleted file mode 100644
index 45d506f3dc5e1cbde18d9f5806e7de2405ab0042..0000000000000000000000000000000000000000
--- a/scripts/jenkins/deploy-post.groovy
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env groovy
-node {
-    stage('Deploy S3 Info') {
-        sh "curl 'https://svn.ufz.de:8443/job/OGS-6/job/Deploy/lastSuccessfulBuild/api/json?pretty=true&tree=actions" +
-            "[artifacts[*]],url' -g --insecure -o lastSuccessfulArtifacts.json"
-            archiveArtifacts 'lastSuccessfulArtifacts.json'
-        step([$class: 'S3BucketPublisher', dontWaitForConcurrentBuildCompletion: true, entries:
-            [[bucket: 'opengeosys', excludedFile: '', flatten: true, gzipFiles: false,
-                managedArtifacts: false, noUploadOnFailure: true, selectedRegion: 'eu-central-1',
-                sourceFile: "lastSuccessfulArtifacts.json", storageClass: 'STANDARD',
-                uploadFromSlave: true, useServerSideEncryption: false]], profileName: 'S3 UFZ',
-                userMetadata: [[key: 'Content-Type', value: 'Application/json']]])
-    }
-}
diff --git a/scripts/jenkins/deploy.groovy b/scripts/jenkins/deploy.groovy
deleted file mode 100644
index 2577ee39f040592b97e5a5ecb54a3553a13f06b5..0000000000000000000000000000000000000000
--- a/scripts/jenkins/deploy.groovy
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env groovy
-node {
-    stage('Deploy to S3') {
-        deleteDir()
-        step([$class: 'CopyArtifact',
-            fingerprintArtifacts: true, flatten: true,
-            projectName: 'OGS-6/ufz/master',
-            selector: [$class: 'LastCompletedBuildSelector']])
-            if (gitTag == "")
-                s3upload('*')
-            else
-                s3upload('*', "opengeosys/ogs6-releases/${gitTag}")
-        build job: 'OGS-6/Deploy-Post', wait: false
-    }
-}
-
-def s3upload(files, bucket = null) {
-    def managed = false
-    if (bucket == null) {
-        managed = true
-        bucket = 'opengeosys'
-    }
-
-    step([$class: 'S3BucketPublisher',
-        dontWaitForConcurrentBuildCompletion: true, entries:
-        [[bucket: "${bucket}", excludedFile: '', flatten: true, gzipFiles: false,
-            managedArtifacts: managed, noUploadOnFailure: true, selectedRegion: 'eu-central-1',
-            sourceFile: "${files}", storageClass: 'STANDARD', uploadFromSlave: true,
-            useServerSideEncryption: false]], profileName: 'S3 UFZ', userMetadata: []])
-}
diff --git a/scripts/jenkins/gcc-conan.groovy b/scripts/jenkins/gcc-conan.groovy
deleted file mode 100644
index bdedf194731307d95b51b09238fd9e139b26e7c7..0000000000000000000000000000000000000000
--- a/scripts/jenkins/gcc-conan.groovy
+++ /dev/null
@@ -1,58 +0,0 @@
-def defaultDockerArgs = '-v /home/jenkins/.ccache:/usr/src/.ccache ' +
-    '-v /home/jenkins/conan-data:/home/jenkins/.conan/data'
-
-def defaultCMakeOptions =
-    '-DCMAKE_BUILD_TYPE=Release ' +
-    '-DOGS_USE_CONAN=ON ' +
-    '-DOGS_CONAN_BUILD=never ' +
-    '-DOGS_CPU_ARCHITECTURE=generic ' +
-    '-DOGS_PACKAGE_DEPENDENCIES=ON '
-
-def guiCMakeOptions =
-    '-DOGS_BUILD_CLI=OFF ' +
-    '-DOGS_BUILD_GUI=ON ' +
-    '-DOGS_BUILD_UTILS=ON ' +
-    '-DOGS_BUILD_TESTS=OFF ' +
-    '-DOGS_BUILD_METIS=ON '
-
-def configure = new ogs.configure()
-def build = new ogs.build()
-def post = new ogs.post()
-def helper = new ogs.helper()
-
-def image = docker.image('ogs6/gcc-conan')
-image.pull()
-image.inside(defaultDockerArgs) {
-    stage('Configure (Linux-Docker)') {
-        configure.linux(
-            cmakeOptions: defaultCMakeOptions,
-            script: this
-        )
-    }
-
-    stage('CLI (Linux-Docker)') {
-        build.linux(script: this)
-    }
-
-    stage('Test (Linux-Docker)') {
-        build.linux(script: this, target: 'tests ctest')
-    }
-
-    stage('Data Explorer (Linux-Docker)') {
-        configure.linux(
-            cmakeOptions: defaultCMakeOptions + guiCMakeOptions,
-            keepDir: true,
-            script: this
-        )
-        build.linux(script: this)
-    }
-}
-
-stage('Archive (Linux-Docker)') {
-    archiveArtifacts 'build/*.tar.gz,build/conaninfo.txt'
-}
-
-stage('Post (Linux-Docker)') {
-    post.publishTestReports 'build/Testing/**/*.xml', 'build/Tests/testrunner.xml'
-    post.cleanup()
-}
diff --git a/scripts/jenkins/gcc-dynamic.groovy b/scripts/jenkins/gcc-dynamic.groovy
deleted file mode 100644
index 56cf973f0b90e3e70008e873db7f208140a33a41..0000000000000000000000000000000000000000
--- a/scripts/jenkins/gcc-dynamic.groovy
+++ /dev/null
@@ -1,67 +0,0 @@
-def defaultCMakeOptions =
-    '-DCMAKE_BUILD_TYPE=Release ' +
-    '-DOGS_BUILD_UTILS=ON ' +
-    '-DOGS_BUILD_METIS=ON '
-
-def configure = new ogs.configure()
-def build = new ogs.build()
-def post = new ogs.post()
-def helper = new ogs.helper()
-
-stage('Configure (envinf1)') {
-    installPrefix = "/global/apps/ogs/"
-    installPrefix += "head"
-    modulePrefix = "/global/apps/modulefiles/ogs/"
-    modulePrefix += "head"
-
-    configure.linux(cmakeOptions: defaultCMakeOptions + '-DBUILD_SHARED_LIBS=ON ',
-        env: 'envinf1/cli.sh', script: this)
-    configure.linux(cmakeOptions: defaultCMakeOptions + '-DBUILD_SHARED_LIBS=ON ' +
-        '-DOGS_USE_PETSC=ON ',
-        dir: 'build-petsc', env: 'envinf1/petsc.sh', script: this)
-}
-
-stage('CLI (envinf1)') {
-    parallel serial: {
-        build.linux(env: 'envinf1/cli.sh', script: this)
-    }, petsc: {
-        build.linux(dir: 'build-petsc', env: 'envinf1/petsc.sh', script: this)
-    }
-}
-
-stage('Test (envinf1)') {
-    parallel serial: {
-        build.linux(env: 'envinf1/cli.sh', script: this, target: 'tests ctest')
-    }, petsc: {
-        build.linux(dir: 'build-petsc', env: 'envinf1/petsc.sh', script: this,
-            target: 'tests ctest')
-    }
-}
-
-if (helper.isOriginMaster(this)) {
-    stage('Deploy (envinf1)') {
-        parallel serial: {
-            configure.linux(cmakeOptions: defaultCMakeOptions +
-                "-DCMAKE_INSTALL_PREFIX=${installPrefix}/standard " +
-                "-DOGS_MODULEFILE=${modulePrefix}/standard " +
-                "-DOGS_CPU_ARCHITECTURE=core-avx-i ",
-                dir: 'build-static', env: 'envinf1/cli.sh', script: this)
-            build.linux(dir: 'build-static', env: 'envinf1/cli.sh',
-                script: this, target: 'install')
-
-        }, petsc: {
-            configure.linux(cmakeOptions: defaultCMakeOptions + '-DOGS_USE_PETSC=ON ' +
-                "-DCMAKE_INSTALL_PREFIX=${installPrefix}/petsc " +
-                "-DOGS_MODULEFILE=${modulePrefix}/petsc " +
-                "-DOGS_CPU_ARCHITECTURE=core-avx-i ",
-                dir: 'build-static-petsc', env: 'envinf1/petsc.sh', script: this)
-            build.linux(dir: 'build-static-petsc', env: 'envinf1/petsc.sh',
-                script: this, target: 'install')
-        }
-    }
-}
-
-stage('Post (envinf1)') {
-    post.publishTestReports 'build*/Testing/**/*.xml', 'build*/Tests/testrunner.xml'
-    post.cleanup()
-}
diff --git a/scripts/jenkins/gcc.groovy b/scripts/jenkins/gcc.groovy
deleted file mode 100644
index 3166e1020927407d95ce0aa94aa74a82e0aced8b..0000000000000000000000000000000000000000
--- a/scripts/jenkins/gcc.groovy
+++ /dev/null
@@ -1,114 +0,0 @@
-def defaultDockerArgs = '-v /home/jenkins/.ccache:/usr/src/.ccache'
-def defaultCMakeOptions =
-    '-DCMAKE_BUILD_TYPE=Release ' +
-    '-DOGS_CPU_ARCHITECTURE=generic ' +
-    '-DDOCS_GENERATE_LOGFILE=ON ' +
-    '-DOGS_PACKAGE_DEPENDENCIES=ON '
-
-def guiCMakeOptions =
-    '-DOGS_BUILD_CLI=OFF ' +
-    '-DOGS_BUILD_GUI=ON ' +
-    '-DOGS_BUILD_UTILS=ON ' +
-    '-DOGS_BUILD_TESTS=OFF ' +
-    '-DOGS_BUILD_METIS=ON '
-
-def configure = new ogs.configure()
-def build = new ogs.build()
-def post = new ogs.post()
-def helper = new ogs.helper()
-
-def webCMakeOptions = '-DOGS_WEB_BASE_URL=$JOB_URL"Web/" '
-if (helper.isOriginMaster(this))
-    webCMakeOptions = '-DOGS_WEB_BASE_URL=https://dev.opengeosys.org'
-
-def image = docker.image('ogs6/gcc-gui:latest')
-image.pull()
-image.inside(defaultDockerArgs) {
-    stage('git diff check') {
-        sh """cd ogs
-              git config core.whitespace -blank-at-eof
-              git diff --check `git merge-base origin/master HEAD`
-           """.stripIndent()
-    }
-    sh 'cd ogs && git lfs pull'
-    stage('Install prerequisites Web') {
-        sh("""
-            cd ogs/web
-            yarn --ignore-engines --non-interactive
-            node node_modules/node-sass/scripts/install.js
-            npm rebuild node-sass
-            sudo -H pip install -r requirements.txt
-        """.stripIndent())
-    }
-    stage('Configure (Linux-Docker)') {
-        configure.linux(cmakeOptions: defaultCMakeOptions + webCMakeOptions, script: this)
-    }
-
-    stage('CLI (Linux-Docker)') {
-        build.linux(script: this)
-    }
-
-    stage('xml lint') {
-        sh 'cd ogs && find -name \'*.prj\' -exec xmllint --noout {} \\;'
-    }
-
-    stage('Test (Linux-Docker)') {
-        build.linux(script: this, target: 'tests ctest')
-    }
-
-    stage('Web (Linux-Docker)') {
-        withCredentials([string(
-            credentialsId: 'CONTENTFUL_ACCESS_TOKEN',
-            variable: 'CONTENTFUL_ACCESS_TOKEN'), string(
-            credentialsId: 'CONTENTFUL_OGS_SPACE_ID',
-            variable: 'CONTENTFUL_OGS_SPACE_ID')]) {
-
-            build.linux(script: this, target: 'web')
-
-            if (helper.isOriginMaster(this)) {
-                sshagent(credentials: ['www-data_jenkins']) {
-                    sh 'rsync -a --delete --stats -e "ssh -o UserKnownHostsFile=' +
-                        'ogs/scripts/jenkins/known_hosts" ogs/web/public/ ' +
-                        'www-data@jenkins.opengeosys.org:/var/www/dev.opengeosys.org'
-                }
-            } else {
-                publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: true,
-                    keepAll: true, reportDir: 'ogs/web/public', reportFiles: 'index.html',
-                    reportName: 'Web'])
-            }
-        }
-    }
-
-    stage('Data Explorer (Linux-Docker)') {
-        configure.linux(
-            cmakeOptions: defaultCMakeOptions + guiCMakeOptions,
-            keepDir: true,
-            script: this
-        )
-        build.linux(script: this, target: 'package doc')
-    }
-}
-
-stage('Post (Linux-Docker)') {
-    post.publishTestReports 'build/Testing/**/*.xml', 'build/Tests/testrunner.xml'
-
-    publishHTML(target: [allowMissing: false, alwaysLinkToLastBuild: true,
-        keepAll: true, reportDir: 'build/docs', reportFiles: 'index.html',
-        reportName: 'Doxygen'])
-    step([$class: 'WarningsPublisher', canResolveRelativePaths: false,
-        messagesPattern: """
-            .*DOT_GRAPH_MAX_NODES.
-            .*potential recursive class relation.*""",
-        parserConfigurations: [[parserName: 'Doxygen', pattern:
-        'build/DoxygenWarnings.log']], unstableTotalAll: '0'])
-
-    if (helper.isOriginMaster(this)) {
-        sshagent(credentials: ['www-data_jenkins']) {
-            sh 'rsync -a --delete --stats -e "ssh -o UserKnownHostsFile=' +
-                        'ogs/scripts/jenkins/known_hosts" build/docs/ ' +
-                        'www-data@jenkins.opengeosys.org:/var/www/doxygen.opengeosys.org'
-        }
-    }
-
-    post.cleanup()
-}
diff --git a/scripts/jenkins/msvc.groovy b/scripts/jenkins/msvc.groovy
deleted file mode 100644
index 1b9956e358bb6db3f3933cfc85555f91f70e0be3..0000000000000000000000000000000000000000
--- a/scripts/jenkins/msvc.groovy
+++ /dev/null
@@ -1,50 +0,0 @@
-
-def defaultCMakeOptions =
-    '-DOGS_USE_CONAN=ON ' +
-    '-DOGS_CONAN_BUILD=never ' +
-    '-DOGS_DOWNLOAD_ADDITIONAL_CONTENT=ON ' +
-    '-DOGS_PACKAGE_DEPENDENCIES=ON '
-
-def guiCMakeOptions =
-    '-DOGS_BUILD_GUI=ON ' +
-    '-DOGS_BUILD_UTILS=ON ' +
-    '-DOGS_BUILD_TESTS=OFF ' +
-    '-DOGS_BUILD_SWMM=ON ' +
-    '-DOGS_BUILD_METIS=ON '
-
-def configure = new ogs.configure()
-def build = new ogs.build()
-def post = new ogs.post()
-def helper = new ogs.helper()
-
-withEnv(helper.getEnv(this)) {
-    stage('Configure (Win)') {
-        configure.win(cmakeOptions: defaultCMakeOptions, script: this)
-    }
-
-    stage('CLI (Win)') {
-        build.win(script: this)
-    }
-
-    stage('Test (Win)') {
-        build.win(script: this, target: 'tests')
-        build.win(script: this, target: 'ctest')
-    }
-
-    stage('Data Explorer (Win)') {
-        configure.win(
-            cmakeOptions: defaultCMakeOptions + guiCMakeOptions, keepDir: true,
-            script: this
-        )
-        build.win(script: this)
-    }
-}
-
-stage('Archive (Win)') {
-    archiveArtifacts 'build/*.zip,build/conaninfo.txt'
-}
-
-stage('Post (Win)') {
-    post.publishTestReports 'build/Testing/**/*.xml', 'build/Tests/testrunner.xml'
-    post.cleanup()
-}