Skip to content
Snippets Groups Projects
Jenkins_sec_OS 255 B
Newer Older
#!groovy

node ('windows10')
{
  deleteDir()
  checkout scm
  stage ('build_win10')
  {
    sh "./build_sec_OS.sh $WORKSPACE $NODE_NAME pdata"
  }

//  stage ('run_taurus')
//  {
//      ./run.sh $WORKSPACE $NODE_NAME 24 1 24"
//  }
}