From 5908812d452b1765c865f8a2f6a68e4987c733eb Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 6 Oct 2024 20:54:14 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0cd82e5..a3cccf1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 {