Update Jenkinsfile
This commit is contained in:
parent
ecc7be5dba
commit
5908812d45
1 changed files with 16 additions and 13 deletions
29
Jenkinsfile
vendored
29
Jenkinsfile
vendored
|
@ -68,23 +68,26 @@ pipeline {
|
|||
label "linuxfs"
|
||||
}
|
||||
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
steps {
|
||||
|
||||
cd phoenix-firestorm
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
||||
rm -fv build*/newview/Phoenix*tar*
|
||||
rm -fv build*/newview/*.AppImage
|
||||
rm -rfv build*/newview/squash*
|
||||
rm -rfv build*/newview/packaged
|
||||
cd phoenix-firestorm
|
||||
|
||||
chmod +x /firestorm/installables.sh
|
||||
/firestorm/installables.sh
|
||||
rm -fv build*/newview/Phoenix*tar*
|
||||
rm -fv build*/newview/*.AppImage
|
||||
rm -rfv build*/newview/squash*
|
||||
rm -rfv build*/newview/packaged
|
||||
|
||||
autobuild configure -A64 -c ReleaseFS_open -- --fmodstudio --chan FS_ci_zdev --package -DLL_TESTS:BOOL=NO
|
||||
autobuild build -A64 -c ReleaseFS_open --no-configure -- --fmodstudio || true
|
||||
'''
|
||||
chmod +x /firestorm/installables.sh
|
||||
/firestorm/installables.sh
|
||||
|
||||
autobuild configure -A64 -c ReleaseFS_open -- --fmodstudio --chan FS_ci_zdev --package -DLL_TESTS:BOOL=NO
|
||||
autobuild build -A64 -c ReleaseFS_open --no-configure -- --fmodstudio || true
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
|
|
Loading…
Reference in a new issue