This repository was archived by the owner on Mar 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +23
-8
lines changed
Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 6666 with :
6767 arch : x64
6868
69- - name : Build everything
69+ - name : Build everything and verify
7070 run : |
7171 ./dist.release.bat
72-
73- - name : Verify
74- run : |
75- ./verify.ps1
Original file line number Diff line number Diff line change 11rmdir /S /Q bin
22CALL build.net35.bat Debug
3+ IF %ERRORLEVEL% NEQ 0 goto failed
4+
5+ echo succeeded.
6+ exit /b 0
7+
8+ :failed
9+ echo failed.
10+ exit /b 1
Original file line number Diff line number Diff line change 11rmdir /S /Q bin
22CALL build.net35.bat Release
3- powershell -file sign.ps1
3+ powershell -ExecutionPolicy Bypass - file sign.ps1
44CALL build.installer.bat
5- powershell -file sign.installers.ps1
6- powershell -file sha1.ps1
5+ powershell -ExecutionPolicy Bypass -file sign.installers.ps1
6+ IF %ERRORLEVEL% NEQ 0 goto failed
7+ powershell -ExecutionPolicy Bypass -file verify.ps1
8+ IF %ERRORLEVEL% NEQ 0 goto failed
9+ powershell -ExecutionPolicy Bypass -file sha1.ps1
10+ IF %ERRORLEVEL% NEQ 0 goto failed
11+
12+ echo succeeded.
13+ exit /b 0
14+
15+ :failed
16+ echo failed.
17+ exit /b 1
You can’t perform that action at this time.
0 commit comments