Update Jenkinsfile

This commit is contained in:
zontreck 2024-10-06 20:54:14 +00:00
parent ecc7be5dba
commit 5908812d45

29
Jenkinsfile vendored
View file

@ -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 {