Fix CI Windows task

This commit is contained in:
zontreck 2024-11-25 00:47:46 -07:00
parent a762e3d4c0
commit d49bccde70

6
Jenkinsfile vendored
View file

@ -70,13 +70,17 @@ pipeline {
script { script {
bat 'flutter pub get' bat 'flutter pub get'
bat 'call compile.bat' bat 'call compile.bat'
bat '''
cd build\\windows\\x64\\runner\\Release
tar -cvf ..\\..\\..\\..\\..\\client-windows.tgz .
'''
} }
} }
post { post {
always { always {
archiveArtifacts artifacts: "out\\*.exe", fingerprint: true archiveArtifacts artifacts: "out\\*.exe", fingerprint: true
archiveArtifacts artifacts: "build\\windows\\x64\\runner\\Release" archiveArtifacts artifacts: "client-windows.tgz"
deleteDir() deleteDir()
} }
} }