@@ -662,8 +662,7 @@ function BuildChecksumsFile()
662
662
" processhacker-build-setup.exe" ,
663
663
" processhacker-build-sdk.zip" ,
664
664
" processhacker-build-bin.zip" ,
665
- " processhacker-build-src.zip" ,
666
- " processhacker-build-pdb.zip" ;
665
+ " processhacker-build-src.zip" ; # processhacker-build-pdb.zip
667
666
668
667
Write-Host " Generating checksums" - NoNewline - ForegroundColor Cyan
669
668
@@ -813,7 +812,7 @@ function UpdateBuildService()
813
812
$sdkZip = " ${env: BUILD_OUTPUT_FOLDER} \processhacker-build-sdk.zip"
814
813
$binZip = " ${env: BUILD_OUTPUT_FOLDER} \processhacker-build-bin.zip"
815
814
$srcZip = " ${env: BUILD_OUTPUT_FOLDER} \processhacker-build-src.zip"
816
- $pdbZip = " ${env: BUILD_OUTPUT_FOLDER} \processhacker-build-pdb.zip"
815
+ # $pdbZip = "${env:BUILD_OUTPUT_FOLDER}\processhacker-build-pdb.zip"
817
816
$checksums = " ${env: BUILD_OUTPUT_FOLDER} \processhacker-build-checksums.txt"
818
817
819
818
Write-Host " Updating build service" - NoNewline - ForegroundColor Cyan
@@ -837,7 +836,7 @@ function UpdateBuildService()
837
836
$sdkHash = $array [1 ].Hash;
838
837
$binHash = $array [2 ].Hash;
839
838
$srcHash = $array [3 ].Hash;
840
- $pdbHash = $array [4 ].Hash;
839
+ # $pdbHash = $array[4].Hash;
841
840
}
842
841
else
843
842
{
@@ -861,13 +860,11 @@ function UpdateBuildService()
861
860
$srcHash = (Get-FileHash " $srcZip " - Algorithm SHA256).Hash;
862
861
}
863
862
864
- if (Test-Path " $pdbZip " )
865
- {
866
- $pdbHash = (Get-FileHash " $pdbZip " - Algorithm SHA256).Hash;
867
- }
863
+ # if (Test-Path "$pdbZip")
864
+ # $pdbHash = (Get-FileHash "$pdbZip" -Algorithm SHA256).Hash;
868
865
}
869
866
870
- if ($global :signature_output -and $global :buildMessage -and $exeHash -and $sdkHash -and $binHash -and $srcHash -and $pdbHash -and $ fileTime -and $fileSize -and $global :fileVersion )
867
+ if ($global :signature_output -and $global :buildMessage -and $exeHash -and $sdkHash -and $binHash -and $srcHash -and $fileTime -and $fileSize -and $global :fileVersion )
871
868
{
872
869
$jsonString = @ {
873
870
" version" = " $global :fileVersion "
@@ -880,7 +877,6 @@ function UpdateBuildService()
880
877
" hash_sdk" = " $sdkHash "
881
878
" hash_bin" = " $binHash "
882
879
" hash_src" = " $srcHash "
883
- " hash_pdb" = " $pdbHash "
884
880
" message" = " $global :buildMessage "
885
881
" sig" = " $global :signature_output "
886
882
} | ConvertTo-Json | Out-String ;
@@ -889,14 +885,14 @@ function UpdateBuildService()
889
885
Remove-Item " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -sdk.zip" - Force - ErrorAction SilentlyContinue
890
886
Remove-Item " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -bin.zip" - Force - ErrorAction SilentlyContinue
891
887
Remove-Item " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -src.zip" - Force - ErrorAction SilentlyContinue
892
- Remove-Item " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -pdb.zip" - Force - ErrorAction SilentlyContinue
888
+ # Remove-Item "${env:BUILD_OUTPUT_FOLDER}\processhacker-$global:fileVersion-pdb.zip" -Force -ErrorAction SilentlyContinue
893
889
Remove-Item " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -checksums.txt" - Force - ErrorAction SilentlyContinue
894
890
895
891
Rename-Item " $exeSetup " " processhacker-$global :fileVersion -setup.exe" - Force
896
892
Rename-Item " $sdkZip " " processhacker-$global :fileVersion -sdk.zip" - Force
897
893
Rename-Item " $binZip " " processhacker-$global :fileVersion -bin.zip" - Force
898
894
Rename-Item " $srcZip " " processhacker-$global :fileVersion -src.zip" - Force
899
- Rename-Item " $pdbZip " " processhacker-$global :fileVersion -pdb.zip" - Force
895
+ # Rename-Item "$pdbZip" "processhacker-$global:fileVersion-pdb.zip" -Force
900
896
Rename-Item " $checksums " " processhacker-$global :fileVersion -checksums.txt" - Force
901
897
902
898
if (($global :buildbot ) -and (Test-Path Env:\APPVEYOR_BUILD_API))
@@ -907,7 +903,7 @@ function UpdateBuildService()
907
903
Push-AppveyorArtifact " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -sdk.zip" - ErrorAction SilentlyContinue
908
904
Push-AppveyorArtifact " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -bin.zip" - ErrorAction SilentlyContinue
909
905
Push-AppveyorArtifact " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -src.zip" - ErrorAction SilentlyContinue
910
- Push-AppveyorArtifact " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -pdb.zip" - ErrorAction SilentlyContinue
906
+ # Push-AppveyorArtifact "${env:BUILD_OUTPUT_FOLDER}\processhacker-$global:fileVersion-pdb.zip" -ErrorAction SilentlyContinue
911
907
Push-AppveyorArtifact " ${env: BUILD_OUTPUT_FOLDER} \processhacker-$global :fileVersion -checksums.txt" - ErrorAction SilentlyContinue
912
908
}
913
909
}
@@ -979,7 +975,7 @@ BuildSetupExe;
979
975
BuildSdkZip;
980
976
BuildBinZip;
981
977
BuildSourceZip;
982
- BuildPdbZip;
978
+ # BuildPdbZip;
983
979
984
980
# Build the checksums
985
981
BuildChecksumsFile;
0 commit comments