23 lines
369 B
Text
23 lines
369 B
Text
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage("Build on Linux") {
|
||
|
agent {
|
||
|
label 'linux'
|
||
|
}
|
||
|
|
||
|
steps {
|
||
|
sh '''
|
||
|
#!/bin/bash
|
||
|
'''
|
||
|
}
|
||
|
|
||
|
post {
|
||
|
always {
|
||
|
deleteDir()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|