mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-06-20 09:19:27 +02:00
18 lines
352 B
Plaintext
18 lines
352 B
Plaintext
pipeline {
|
|
agent {
|
|
label 'windows'
|
|
}
|
|
stages {
|
|
stage('Sync add-ins') {
|
|
steps {
|
|
bat 'call src\\addins\\sync-addins.bat'
|
|
}
|
|
}
|
|
|
|
stage('Check') {
|
|
steps {
|
|
bat 'oscript ./ci/os/internal/Classes/CLIOutputInspector.os'
|
|
}
|
|
}
|
|
}
|
|
} |