mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
16 lines
200 B
Groovy
16 lines
200 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh './jenkins/build.sh'
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
sh './jenkins/test.sh'
|
|
}
|
|
}
|
|
}
|
|
}
|