mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
18 lines
379 B
Groovy
18 lines
379 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Setup') {
|
|
steps {
|
|
sh 'git submodule update --init --recursive'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh 'Tools/package_release_build.py -p windows mac linux'
|
|
archiveArtifacts artifacts: 'release/*.zip'
|
|
}
|
|
}
|
|
}
|
|
}
|