瀏覽代碼

Drop jenkins file for seis

Samuel Thibault 3 年之前
父節點
當前提交
eb3bdeccff
共有 1 個文件被更改,包括 0 次插入40 次删除
  1. 0 40
      examples/Jenkinsfile

+ 0 - 40
examples/Jenkinsfile

@@ -1,40 +0,0 @@
-def FAILURE_STAGE
-pipeline {
-   agent any
-   stages {
-      stage('Clone repo') {
-         steps {
-            script{
-                FAILURE_STAGE=env.STAGE_NAME
-            }
-            cleanWs()
-            git credentialsId: 'gitlab', url: 'https://gitlab.seis.exa2pro.iti.gr/exa2pro/starpu.git', branch: 'fpga'
-            
-         }
-      }
-      stage('Build') {
-         steps {
-            script{
-                FAILURE_STAGE=env.STAGE_NAME
-            }
-            sh '''
-                ./autogen.sh
-                ./configure --prefix=/home/jenkins/.jenkins/workspace/starpu_pipeline_updated/lib --disable-build-examples
-                make
-                make install
-                '''
-         }
-      }
-      stage('Test') {
-         steps {
-            script{
-                FAILURE_STAGE=env.STAGE_NAME
-            }
-            sh '''
-                cd examples/cholesky
-                ./cholesky.sh
-                '''
-         }
-      }
-   }
-}