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" label "linuxfs"
} }
script { steps {
sh '''
#!/bin/bash
cd phoenix-firestorm script {
sh '''
#!/bin/bash
rm -fv build*/newview/Phoenix*tar* cd phoenix-firestorm
rm -fv build*/newview/*.AppImage
rm -rfv build*/newview/squash*
rm -rfv build*/newview/packaged
chmod +x /firestorm/installables.sh rm -fv build*/newview/Phoenix*tar*
/firestorm/installables.sh 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 chmod +x /firestorm/installables.sh
autobuild build -A64 -c ReleaseFS_open --no-configure -- --fmodstudio || true /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 { post {