test/Jenkinsfile

59 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-08-01 11:24:25 +02:00
pipeline{
2022-09-29 19:01:43 +02:00
agent { node{ label'workstation' }}
2022-08-01 11:32:41 +02:00
options {
// Limit build history with buildDiscarder option:
// daysToKeepStr: history is only kept up to this many days.
// numToKeepStr: only this many build logs are kept.
// artifactDaysToKeepStr: artifacts are only kept up to this many days.
// artifactNumToKeepStr: only this many builds have their artifacts kept.
buildDiscarder(logRotator(numToKeepStr: "1"))
// Enable timestamps in build log console
timestamps()
// Maximum time to run the whole pipeline before canceling it
timeout(time: 1, unit: 'HOURS')
// Use Jenkins ANSI Color Plugin for log console
ansiColor('xterm')
// Limit build concurrency to 1 per branch
disableConcurrentBuilds()
2022-07-29 14:46:30 +02:00
}
2022-08-01 11:26:37 +02:00
stages
{
stage('Test')
{
2022-08-02 18:43:13 +02:00
agent {
docker {
2022-08-02 20:54:34 +02:00
image 'xsangle/ci-tools:latest-arm64'
2022-08-02 20:20:03 +02:00
// args '-v /etc/passwd:/etc/passwd'
2022-08-02 18:43:13 +02:00
// Run the container on the node specified at the
// top-level of the Pipeline, in the same workspace,
// rather than on a new node entirely:
reuseNode true
}
}
2022-08-01 11:31:29 +02:00
steps {
2022-08-02 18:44:30 +02:00
sh '''
2022-08-02 18:43:13 +02:00
printenv
uname -a
2022-08-02 18:44:30 +02:00
'''
2022-08-01 11:31:29 +02:00
}
2022-08-01 11:26:37 +02:00
}
stage('Remote SSH') {
2022-08-01 11:31:29 +02:00
steps {
2022-09-16 11:22:28 +02:00
sh'''
2022-09-29 19:01:43 +02:00
printenv
uname -a
2022-08-01 11:57:13 +02:00
'''
2022-08-01 11:31:29 +02:00
}
2022-08-01 11:26:37 +02:00
}
2022-07-29 13:58:41 +02:00
}
2022-09-09 12:00:43 +02:00
post {
//always {}
//success {}
failure {
mail bcc: '', body: "<b>Failure</b><br><br>Project: ${env.JOB_NAME} <br>Build Number: ${env.BUILD_NUMBER} <br> Build URL: ${env.BUILD_URL}", cc: '', charset: 'UTF-8', from: '', mimeType: 'text/html', replyTo: '', subject: "ERROR CI: ${env.JOB_NAME}", to: "mrsang@iohub.dev";
}
//unstable {}
//changed {}
}
2022-08-01 11:19:01 +02:00
}