-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try moving to actions for windows-specific
- Loading branch information
Showing
6 changed files
with
105 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
:: sha-of-zip.bat | ||
:: Windows port of sha-of-zip.sh. See that file for a description. | ||
:: Usage: ./sha-of-zip.bat <ZIP_FILEPATH> <sha version: 1, 256, or 512> | ||
|
||
@echo off | ||
|
||
set ZIP_FILEPATH=%1 | ||
set SHA_A=%2 | ||
|
||
:: NOTE: This script must be placed one level up from the rcv directory | ||
|
||
echo Initiating batch hash procedure… | ||
echo %date% %time% | ||
|
||
setlocal EnableExtensions EnableDelayedExpansion | ||
|
||
set "HASHFILE=all_hashes.txt" | ||
set "TEMPHASHFILE=all_hashes_temp.txt" | ||
set "EXTRACTIONDIR=.\rcv\modules_extracted" | ||
|
||
if exist %HASHFILE% ( | ||
echo Deleting existing hash file, %HASHFILE% ... | ||
del %HASHFILE% | ||
) | ||
|
||
if exist %EXTRACTIONDIR% ( | ||
echo Deleting existing extracted modules directory, %EXTRACTIONDIR% ... | ||
rmdir /s /q %EXTRACTIONDIR% | ||
) | ||
|
||
echo Extracting contents of modules file... | ||
mkdir %EXTRACTIONDIR% | ||
Expand-Archive -Path %ZIP_FILEPATH% -Destination %EXTRACTIONDIR% | ||
cd %EXTRACTIONDIR% | ||
|
||
:: Calculate the hash for every file here and in all subdirectories, appending to the file (format "(filename) = (hash)") | ||
echo Calculating hashes... | ||
for /r . %%f in (*) do ( | ||
<NUL set /p ="%%f = " >> %HASHFILE% | ||
C:\Windows\System32\certutil.exe -hashfile "%%f" SHA%SHA_A% | findstr /v ":" >> %HASHFILE% | ||
) | ||
|
||
:: Replace the absolute paths to each file with relative paths (e.g. C:\temp\rcv => .\rcv) | ||
|
||
echo Replacing absolute paths with relative paths in hash file... | ||
set "SEARCHTEXT=%cd%" | ||
set "REPLACETEXT=." | ||
for /f "delims=" %%A in ('type "%HASHFILE%"') do ( | ||
set "string=%%A" | ||
set "modified=!string:%SEARCHTEXT%=%REPLACETEXT%!" | ||
echo !modified!>>"%TEMPHASHFILE%" | ||
) | ||
del "%HASHFILE%" | ||
rename "%TEMPHASHFILE%" "%HASHFILE%" | ||
|
||
echo Sorting the hash file... | ||
sort "%HASHFILE%" > "%TEMPHASHFILE%" | ||
del "%HASHFILE%" | ||
rename "%TEMPHASHFILE%" "%HASHFILE%" | ||
|
||
echo Calculating the hash of the entire sorted hash file... | ||
C:\Windows\System32\certutil.exe -hashfile %HASHFILE% SHA%SHA_A% | ||
|
||
endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "Create SHA of a .zip file by extracting it" | ||
description: "Cross-platform helper: checksum of checksums to be timestamp-independent" | ||
|
||
inputs: | ||
zipFilename: | ||
description: "The output file name" | ||
required: true | ||
shaA: | ||
description: "The sha strategy (1, 256, or 512)" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: "Run pre-command" | ||
shell: bash | ||
run: ${{ inputs.command }} | ||
|
||
- name: "Generate zip for Linux/Mac" | ||
if: runner.os == 'Linux' || runner.os == 'MacOS' | ||
shell: bash | ||
run: ./.github/actions/sha-of-zip.sh ${{ inputs.zipFilename }} ${{ runner.os }} ${{ inputs.shaA }} | ||
|
||
- name: "Generate zip for Windows" | ||
if: runner.os == 'Windows' | ||
shell: powershell | ||
run: ./.github/actions/sha-of-zip.bat ${{ inputs.zipFilename }} ${{ inputs.shaA }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters