forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
28 lines (27 loc) · 713 Bytes
/
Jenkinsfile
File metadata and controls
28 lines (27 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 linux-arm64'
}
}
stage('Update build info') {
steps {
sh 'Tools/gen_build_info.py'
archiveArtifacts artifacts: 'release/*.zip'
}
}
stage('Generate checksums') {
steps {
sh 'Tools/generate_hashes.ps1'
archiveArtifacts artifacts: 'release/*.zip.sha256'
}
}
}
}