updated builds

This commit is contained in:
2025-12-13 09:14:25 -06:00
parent 8d3642280d
commit 7d4c7fbffb
4 changed files with 20 additions and 0 deletions

View File

@@ -37,6 +37,9 @@ pipeline {
}
}
stage('clean_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'clean_packages.sh' } } }
}
stage('grab_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'grab_packages.sh' } } }
}

View File

@@ -36,6 +36,9 @@ pipeline {
}
}
stage('clean_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'clean_packages.sh' } } }
}
stage('grab_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'grab_packages.sh' } } }
}

View File

@@ -36,6 +36,9 @@ pipeline {
}
}
stage('clean_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'clean_packages.cmd' } } }
}
stage('grab_packages') {
steps { script { retryWithBackoff(2, 5) { sh 'grab_packages.cmd' } } }
}

11
clean_packages.cmd Normal file
View File

@@ -0,0 +1,11 @@
@echo off
setlocal
pushd "%~dp0"
call src\scripts\setup_msys2.cmd
call mingw64 -no-start ./clean_packages.sh
popd
endlocal