SimpleHelperTools/Jenkinsfile

28 lines
666 B
Text
Raw Normal View History

2024-08-30 20:37:25 -07:00
pipeline {
agent any
stages {
stage("Build on Linux") {
agent {
label 'linux'
}
steps {
sh '''
#!/bin/bash
./compile.sh
2024-08-30 20:37:25 -07:00
'''
}
post {
always {
archiveArtifacts artifacts: "dart/out/*", fingerprint: true
archiveArtifacts artifacts: "cpp/build/vsleep", fingerprint: true
archiveArtifacts artifacts: "cpp/build/pause", fingerprint: true
2024-08-30 20:37:25 -07:00
deleteDir()
}
}
}
}
}