We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d31500f commit a3a6911Copy full SHA for a3a6911
1 file changed
Jenkinsfile
@@ -12,7 +12,10 @@ stage ('Build Downfall') {
12
}
13
14
stage('Compile on Linux') {
15
- sh 'mkdir -p sp\\game\\bin'
+ try {
16
+ sh 'mkdir -p sp\\game\\bin'
17
+ } catch {}
18
+
19
dir ('sp/src') {
20
sh '/valve/steam-runtime/shell.sh --arch=i386 make -f games.mak'
21
@@ -37,7 +40,10 @@ stage ('Build Downfall') {
37
40
38
41
39
42
stage('Compile on Windows') {
- bat 'mkdir -p sp\\game\\bin'
43
44
+ bat 'mkdir -p sp\\game\\bin'
45
46
47
48
bat '''call "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\Common7\\Tools\\VsDevCmd.bat"
49
msbuild game.sln /t:Build /p:Configuration=Release /m:4'''
0 commit comments