1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-06 03:54:27 +02:00
OpenIntegrations/jenkinsfile

21 lines
518 B
Plaintext
Raw Normal View History

2024-09-16 12:32:49 +02:00
pipeline {
2024-09-16 12:48:44 +02:00
agent any
2024-09-16 12:46:04 +02:00
stages {
2024-09-16 12:51:17 +02:00
stage('Prepare') {
2024-09-16 12:46:04 +02:00
steps {
checkout scm
2024-09-16 12:51:17 +02:00
bat 'opm install osparser'
bat 'opm install cmdline'
bat 'opm install asserts'
bat 'opm install osparser'
bat 'opm install coloratos'
2024-09-16 12:46:04 +02:00
}
2024-09-16 12:42:21 +02:00
}
2024-09-16 12:46:04 +02:00
stage('Build') {
steps {
bat 'oscript ./.github/workflows/os/main.os'
}
2024-09-16 12:42:21 +02:00
}
}
2024-09-16 12:32:49 +02:00
}