Changes between Version 4 and Version 5 of BuildClientProcedure
- Timestamp:
- Jul 30, 2007, 2:41:31 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildClientProcedure
v4 v5 37 37 == Build Client == 38 38 39 Launch the boinc.slnproject file and build both the x86 and x64 targets.39 Launch the `boinc.sln` project file and build both the x86 and x64 targets. 40 40 41 41 == Sanity Test New Binaries == 42 42 43 Run the BOINC manager and attach to the BOINC alpha test project, let run for 15 mins. Traverse 44 all the tabs, verify the status fields as a result traverses the crunching process. 43 Run the BOINC manager and attach to the BOINC alpha test project, let run for 15 mins. Traverse all the tabs, verify the status fields as a result traverses the crunching process. 45 44 46 45 == Code Sign Binaries == 47 46 48 The the SignCode.cmd file from the win_build directory. This batch file should be run from within a Visual 49 Studio command shell. SignCode should contain a series of the following line: 47 The the `SignCode.cmd` file from the win_build directory. This batch file should be run from within a Visual Studio command shell. !SignCode should contain a series of the following line: 50 48 51 49 {{{ 52 53 50 signtool sign /f "boinc.pfx" /p "<password>" /d "BOINC Client Software" /du "http://boinc.berkeley.edu" 54 51 /t "http://timestamp.verisign.com/scripts/timstamp.dll" /sha1 "2F0BDC8DD84A56417C68B53B29DD12155760652D" 55 52 .\Build\Win32\ReleaseSigned\boinc.dll 56 57 53 }}} 58 54 59 55 A call to signtool should be executed for each binary shipped in the setup package. 60 56 61 Use [urlhttp://msdn2.microsoft.com/en-us/library/aa906332.aspx pvk2pfx] to convert the spc/pvk certificate pair into 62 a pfx file. 57 Use [http://msdn2.microsoft.com/en-us/library/aa906332.aspx pvk2pfx] to convert the spc/pvk certificate pair into a pfx file. 63 58 64 59 Replace '<password>' with the correct private key password used to create the private/public key pair.