1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-03 13:22:19 +02:00
OpenIntegrations/jenkinsfile

16 lines
285 B
Plaintext
Raw Normal View History

2024-09-16 13:32:49 +03:00
pipeline {
2024-09-16 13:48:44 +03:00
agent any
2024-09-16 13:46:04 +03:00
stages {
stage('Checkout') {
steps {
checkout scm
}
2024-09-16 13:42:21 +03:00
}
2024-09-16 13:46:04 +03:00
stage('Build') {
steps {
bat 'oscript ./.github/workflows/os/main.os'
}
2024-09-16 13:42:21 +03:00
}
}
2024-09-16 13:32:49 +03:00
}