Remove package sources and host only the expected SHA-256 #3

Merged
sgraves merged 27 commits from v2-develop into main 2025-12-13 09:35:34 -06:00
4 changed files with 20 additions and 0 deletions
Showing only changes of commit 7d4c7fbffb - Show all commits

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